/* Reset e estilos base */
:root {
  --primary: #3498db;
  --primary-dark: #2980b9;
  --secondary: #2ecc71;
  --secondary-dark: #27ae60;
  --danger: #e74c3c;
  --danger-dark: #c0392b;
  --warning: #f39c12;
  --warning-dark: #e67e22;
  --success: #2ecc71;
  --success-dark: #27ae60;
  --light: #f8f9fa;
  --dark: #343a40;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

nav a:hover {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--primary-dark);
}

header nav a,
.dropdown {
    /* Define a mesma exibição para links e dropdowns */
    display: inline-block;
    /* Alinha verticalmente */
    vertical-align: top; 
    /* Adicione espaçamento para separar os itens */
    margin: 0 10px; 
}

.dropdown-content {
    /* Mantenha o estilo do dropdown-content */
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 12px;
    text-decoration: none;
    display: block;
    margin: 5px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Container principal */
.container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  width: 97.75%;
  margin: 6rem 1rem 2rem;
  overflow-x:auto;
}

h1 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

/* Formulários e inputs */
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="file"],
input[type="date"],
input[type="number"],
select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  min-height: 3rem;
}

/* Botões */
button, .btn {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-contrato {
  padding: 0.75rem 0.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-lote{
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.btn-lote1{
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.btn-frio{
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.btn-frio1{
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-form {
  padding: 0.75rem 1.5rem;
  max-width: 7rem;
  max-height: 3rem;
  margin: 0.4rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

button:hover, .btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sortable {
    cursor: pointer;
    position: relative;
    padding-right: 20px; /* Espaço para o ícone */
}

.sortable .sort-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    color: #aaa; /* Cor padrão do ícone */
}

/* Ícones para ordenação ascendente e descendente */
.sortable.asc .sort-icon::after {
    content: ' ▲'; /* Seta para cima */
    color: #333;
}

.sortable.desc .sort-icon::after {
    content: ' ▼'; /* Seta para baixo */
    color: #333;
}

/* Estado padrão (não ordenado) */
.sortable:not(.asc):not(.desc) .sort-icon::after {
    content: '↕'; /* Setas para cima e para baixo */
    color: #ccc;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-danger {
  background-color: var(--danger);
  color: var(--white);
}

.btn-danger:hover {
  background-color: var(--danger-dark);
}

.btn-warning {
  background-color: var(--warning);
  color: var(--white);
}

.btn-warning:hover {
  background-color: var(--warning-dark);
}

.btn-warning1 {
  margin-top: 4%;
  background-color: var(--warning);
  color: var(--white);
}

.btn-warning1:hover {
  background-color: var(--warning-dark);
}

.btn-neutro {
  background-color: var(--gray);
  color: var(--white);
}

.btn-neutro:hover {
  background-color: var(--dark);
  color: var(--white);
}

.btn-atualizar{
  padding: 0.5rem 0.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crm-container {
    display: flex;
    height: calc(100vh - 4.5rem); /* Ajuste a altura para a sua barra de navegação */
    margin-top: 4.5rem;
}
.sidebar {
    width: 250px;
    background-color: #f0f2f5;
    overflow-y: auto;
    border-right: 1px solid #ddd;
    padding: 10px;
}
.conversa-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.conversa-item:hover {
    background-color: #e9ebee;
}
.area-conversa {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mensagens-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    flex-grow: 1;
}
.mensagem {
    padding: 10px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
    margin-bottom: 10px;
}
.mensagem.recebida {
    background-color: #e0e0e0;
    align-self: flex-start;
}
.mensagem.enviada {
    background-color: #dcf8c6;
    align-self: flex-end;
}
.form-responder {
    margin-top: 0;
    padding-top: 10px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 5px;
}
.header-conversa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.status{
    width: 80px;
}

.link{
    width: 200px;
    word-wrap: break-word;
}

.paginacao-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.paginacao-info {
    display: flex;
    gap: 15px;
}

.paginacao-botoes {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-paginacao {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    border-radius: 3px;
}

.btn-paginacao:hover:not(:disabled) {
    background-color: #e9e9e9;
}

.btn-paginacao:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#pagina-atual {
    padding: 5px 10px;
    font-weight: bold;
}

.filtroLimite {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  height: 32px;
  width: 70px;
  cursor: pointer;
  box-sizing: border-box;
  margin: 2%;
}

.filtroLimite:hover {
  background-color: #f0f0f0;
}

/* Tabela */
.tabela-csv {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  border-radius: var(--border-radius);
}

.tabela-csv th,
.tabela-csv td {
  padding: 0.6rem;
  text-align: left;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
}

.tabela-csv th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.tabela-csv tr:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.tabela-csv tr:last-child td {
  border-bottom: none;
}

.tabela-csv select {
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  min-width: 100px;
  min-height: auto;
  font-size: 0.9rem;
  background-size: 12px 8px;
}

/* Estilo do botão do WhatsApp (modal) */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    margin-bottom: 1rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-whatsapp i {
    font-size: 1rem;
    font-weight: 600;
}

/* Estilo do botão do WhatsApp (modal) */
.btn-whatsapp-prop {
    background-color: #25D366;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.btn-whatsapp-prop:hover {
    background-color: #128C7E;
}

.btn-whatsapp-prop i {
    font-size: 1rem;
    font-weight: 600;
}

/* Estilo para o botão de histórico */
.btn-historico {
  background-color: #17a2b8;
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-historico:hover {
    background-color: #138496;
}

.btn-proposta{
    margin: 1rem auto auto auto;
}


/* Estilo para o modal de histórico */
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem;
}

.historico-item {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.historico-item:last-child {
    border-bottom: none;
}

/* Filtros e paginação */
.filtros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}

.filtro-item {
  display: flex;
  flex-direction: column;
}

.filtro-item label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #495057;
}

.filtros-paginacao {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.filtro-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}
.filtro-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-grow: 1;
}
.filtro-item {
    flex: 1;
    min-width: 150px;
}

.btn-group {
    display: flex;
    gap: 0.5rem;
    width: 150px;
}
.lote-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}
.lote-container .filtro-item {
    flex: 1;
    min-width: 120px;
}

.paginacao-controles {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

.formulario-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

/* Mensagens */
.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-weight: 500;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border-left: 4px solid #28a745;
}

.alert-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-left: 4px solid #dc3545;
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border-left: 4px solid #ffc107;
}

/* Estilos da Sidebar de Notificações */
#notificacoes-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

#notificacoes-sidebar.sidebar-aberto {
    right: 0;
}

#notificacoes-sidebar.sidebar-fechado {
    right: -350px;
}

.btn-abrir {
    position: fixed;
    right: 20px;
    top: 80px;
    z-index: 999;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.btn-fechar {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.notificacao {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
}

.notificacao:not(.lida) {
    background-color: #ff4444;
    border-left: 4px solid #cc0000;
}

.notificacao.lida {
    background-color: #4CAF50;
    opacity: 0.9;
}

.notificacao:not(.lida):hover {
    background-color: #ff6666;
}

.notificacao.lida:hover {
    background-color: #66BB6A;
}

.paginacao-compacta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: #f8f8f8;
    gap: 10px;
}

.paginacao-compacta button {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.paginacao-compacta button:hover:not(:disabled) {
    background-color: var(--primary-dark);
}

.paginacao-compacta button:disabled {
    background-color: var(--gray-light);
    color: var(--gray);
    border-color: var(--gray-light);
    cursor: not-allowed;
}

.paginacao-compacta #info-paginacao-notificacoes {
    font-weight: 600;
    color: var(--dark);
}

.filtro-item select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
}

.filtro-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Container para tabela responsiva */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 1.5rem;
    margin-top: 5rem;
  }

  nav {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  nav a {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  /* Melhorias para filtros */
  .filtro-container, .filtro-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .filtro-item {
    width: 100%;
    min-width: auto;
  }
  
  .btn-group {
    width: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  
  .btn-group button {
    width: 48%;
  }
  
  .tabela-csv th, 
  .tabela-csv td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  
  .filtro-row, 
  .filtro-group,
  .lote-form {
      flex-direction: column;
      gap: 0.75rem;
  }
  
  .filtro-item,
  .lote-form .filtro-item {
      width: 100%;
      min-width: auto;
  }
  
  #notificacoes-sidebar {
      width: 90%;
      right: -90%;
      box-shadow: none;
      padding: 15px;
  }

  #notificacoes-sidebar.sidebar-aberto {
      right: 0;
  }

  #notificacoes-sidebar.sidebar-fechado {
      right: -90%;
  }

  .btn-abrir {
      right: 10px;
      top: 70px;
      padding: 8px 12px;
      font-size: 0.9rem;
  }

  .paginacao-compacta {
      flex-direction: column;
      gap: 5px;
      padding: 8px;
  }

  .paginacao-compacta button {
      width: 100%;
      padding: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 1rem;
    margin-top: 4rem;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  input, select {
    padding: 0.6rem;
  }

  button, .btn {
    width: 100%;
    padding: 0.75rem;
  }

  .filtros-paginacao {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-abrir {
      right: 5px;
      top: 60px;
      padding: 6px 10px;
      font-size: 0.8rem;
  }

  #notificacoes-sidebar .notificacao {
      padding: 8px;
  }

  #notificacoes-sidebar {
    width: 100%;
    right: -100%;
  }

  #notificacoes-sidebar.sidebar-aberto {
    right: 0;
  }

.notificacoes-sidebar.sidebar-fechado {
    right: -100%;
  }
}

.listaBancos {
    list-style-type: none; /* Remove as bolinhas de tópico */
    padding: 0;           /* Remove o preenchimento padrão da lista */
    margin: 0;            /* Remove a margem padrão da lista */

    /* Para limitar horizontalmente ao mesmo tamanho do input de pesquisa */
    width: 100%; /* Se a lista estiver dentro de um container com a largura do input */

    /* Se a lista for uma sobreposição (autocomplete), você pode precisar de: */
    /* position: absolute; */
    /* z-index: 10; */ /* Para garantir que fique acima de outros elementos */
    /* border: 1px solid #ccc; */ /* Opcional: Adiciona uma borda */
    /* background-color: #fff; */ /* Opcional: Cor de fundo */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */ /* Opcional: Sombra */
}

/* Opcional: Estilo para os itens da lista para melhor aparência */
.listaBancos li {
    padding: 8px 12px; /* Espaçamento interno para cada item */
    cursor: pointer;   /* Indica que o item é clicável */
    border-bottom: 1px solid #eee; /* Linha de separação entre os itens */
}

.listaBancos li:last-child {
    border-bottom: none; /* Remove a borda do último item */
}

.listaBancos li:hover {
    background-color: #f0f0f0; /* Cor de fundo ao passar o mouse */
}

.listaBancos li:hover {
    background-color: var(--primary); /* Cor cinza claro ao passar o mouse */
    color: var(--white);
    /* Você pode experimentar outras cores, como: */
    /* background-color: #e0f0ff; */ /* Azul claro */
    /* color: #007bff; */ /* Mudar a cor do texto */
}

.mensagem-erro {
    color: #e74c3c; /* Vermelho */
    font-size: 0.85em;
    margin-top: 5px;
    display: block; /* Para quebra de linha */
}

/* Estilo para inputs inválidos */
.input-invalido {
    border-color: #e74c3c !important; /* Borda vermelha */
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25); /* Sombra vermelha suave */
}

.btn.btn-disabled {
    background-color: #cccccc; /* Um cinza claro para indicar inatividade */
    color: #666666; /* Texto cinza mais escuro */
    cursor: not-allowed; /* Altera o cursor para "não permitido" */
    opacity: 0.7; /* Torna o botão um pouco transparente */
    border: 1px solid #999999; /* Uma borda sutil */
    /* Remova quaisquer transições ou sombras que venham de outras classes */
    transition: none;
    box-shadow: none;
    transform: none; /* Garante que não haja deslocamento no hover/active */
}

/* Remova qualquer efeito de hover ou active para botões desabilitados */
.btn.btn-disabled:hover,
.btn.btn-disabled:active {
    background-color: #cccccc; /* Mantém a mesma cor de fundo */
    color: #666666; /* Mantém a mesma cor do texto */
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}