html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

ul{
  margin-top: 20px;
}

header {
  background-color: #006399; /* Cor de fundo */
  color: white; /* Cor do texto */
  text-align: center; /* Centraliza o texto */
  line-height: 120px; /* Altura da linha para centralizar verticalmente o texto */
  height: 120px; /* Altura fixa para o cabeçalho */
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: calc(100vh - 240px); /* Altura total da viewport menos a altura do cabeçalho e rodapé */
}

footer {
  background-color: #006399;
  color: white;
  text-align: center;
  line-height: 120px;
  height: 120px;
}

.login-container {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  margin: auto;
}

.login-form h2 {
  color: #006399;
  text-align: center;
}

.form {
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-ok {
  background: #3eba3a;
  color: #fff;
}

.btn-cancel {
  background: #745599;
  color: #fff;
}

.forgot-password {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #006399;
}

.forgot-password:hover {
  text-decoration: underline;
}


footer a {
  color: #fff;
}

.resource-container {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1; /* Faz com que o container interno também cresça para preencher o espaço disponível */
}

.tr-ticket {
  cursor: pointer;
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: #CFE2FF;
}

label{
  font-weight:500;
}

.custom-ul {
  list-style-type: none; /* Remove a bolinha padrão */
  padding: 0;
}

.custom-li, .custom2-li {
  border-bottom: 1px solid #007bff; /* Linha abaixo de cada item */
  margin-bottom: 10px; /* Espaço entre os itens */
  padding-bottom: 10px; /* Espaçamento no fundo de cada item */
}

.custom-li a {
  text-decoration: none; /* Remove o sublinhado dos links */
  color: #007bff; /* Cor do texto */
  display: flex; /* Permite alinhar ícones com texto */
  align-items: center; /* Centraliza o ícone com o texto */
  float: right;
  border: 1px solid #007bff;
  border-radius: 5px;
  padding: 0 10px;
  font-weight: 500;
}

.custom2-li a {
  text-decoration: none; /* Remove o sublinhado dos links */ 
  display: flex; /* Permite alinhar ícones com texto */
  align-items: center; /* Centraliza o ícone com o texto */    
  font-weight: 500;
}

.custom-li i, .custom2-li i {
  margin-right: 20px; /* Espaço entre o ícone e o texto */
  color: #007bff; /* Cor do ícone */
  font-size: x-large;
}

.accordion-item:first-of-type .accordion-button {
  color: #007bff;
  font-weight: 500;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  color: #007bff;
  font-weight: 500;
}

.nav-link .active {
  color: #3EBA3A;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px; /* Espaço entre o ícone e o texto */
}

.nav-link i {
  min-width: 25px; /* Garante alinhamento mesmo se o ícone não carregar */
}

.nav-link.active {
  background-color: #3eba3a; /* Cor de fundo para o item ativo */
  color: #fff; /* Cor do texto do item ativo */
  font-weight: bold; /* Deixar o texto em negrito */
  border-radius: 5px; /* Adicionar borda arredondada */
}

header {
  background-color: #006399;
  color: #fff;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

header img {
  height: 80px; /* Ajuste conforme necessário */
}

.cliente-select {
  position: absolute;
  /*top: 10px;*/
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px; /* Espaçamento entre o texto e o select */
}

.cliente-select label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
  white-space: nowrap; /* Evita que o texto quebre */
}

.cliente-select select {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: white;
  color: black;
  min-width: 180px; /* Define uma largura mínima para o select */
}

.cert-container {
  max-width: 800px;
  margin: 40px auto;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.cert-header {
  background-color: #006399;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}
.cert-header img{
  border-radius: 0px;
}
.cert-body {
  padding: 30px;
}
.cert-title {
  text-align: center;
  color: #003366;
}
.cert-section {
  margin-top: 30px;
}
.cert-section h4 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: bold;
}
.cert-table {
  width: 100%;
  border-collapse: collapse;
}
.cert-table td {
  padding: 6px;
  border-bottom: 1px solid #eee;
}
.cert-footer {
  background-color: #006399;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  color: white;
}
.cert-footer a {
  color: white;
  text-decoration: none;
}
.qr-code {
  text-align: center;
  margin-top: 30px;
}
.qr-code img {
  margin-top: 10px;
}
.footer-note {
  text-align: center;
  font-size: 0.85em;
  margin-top: 30px;
  color: #777;
}
.btn-print {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.btn-print:hover {
  background-color: #005599;
}

