.vdb-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.vdb-header {
    text-align: center;
    color: #333;
    padding: 15px 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.vdb-form-container {
    margin-bottom: 20px;
}

.vdb-campo {
    position: relative;
}

.vdb-campo input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.vdb-campo input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.2);
}

/* Gradiente no fundo da página */
.vdb-page-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, #800080, #0091ea);
    z-index: 1;
}

/* Título principal da página */
.vdb-page-title {
    color: #800080;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: none;
}

/* Estilos para o resultado */
.vdb-resultado {
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.vdb-disponivel {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.vdb-indisponivel {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

/* Botões de ação */
.vdb-acoes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.vdb-botao {
    display: inline-block;
    background-color: #FC7500;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vdb-botao:hover {
    background-color: #e56a00;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vdb-botao i {
    margin-right: 8px;
}

/* Estilos para as sugestões de autocomplete */
.vdb-sugestoes {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: -1px; /* Ajuste para conectar perfeitamente com o input */
    padding: 8px 0; /* Espaçamento interno no container */
}

.vdb-sugestao-item {
    padding: 14px 20px; /* Aumentado o padding vertical e horizontal */
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #444;
    line-height: 1.4; /* Melhor altura de linha */
    margin: 2px 0; /* Espaço entre os itens */
}

.vdb-sugestao-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.vdb-sugestao-item:hover,
.vdb-sugestao-item.selected {
    background-color: #f5f8ff;
    color: #2c72dc;
    font-weight: 500; /* Texto em negrito no hover */
    padding-left: 24px; /* Aumentar o recuo à esquerda */
    box-shadow: inset 4px 0 0 #2c72dc; /* Adiciona uma barra lateral */
}

/* Adicionar rolagem suave */
.vdb-sugestoes::-webkit-scrollbar {
    width: 8px;
}

.vdb-sugestoes::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 0 0 8px 0;
}

.vdb-sugestoes::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.vdb-sugestoes::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Estilos para o formulário de cadastro de interessados */
.vdb-form-interessado {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: block !important; /* Garantir que sempre seja exibido */
    opacity: 1 !important; /* Garantir que seja visível */
}

.vdb-form-interessado h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #444;
    font-weight: 500;
}

.vdb-campo-form {
    margin-bottom: 15px;
}

.vdb-campo-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.vdb-campo-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.vdb-campo-form input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.1);
    outline: none;
}

.vdb-botao-interesse {
    background-color: #FC7500;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.vdb-botao-interesse:hover {
    background-color: #e56a00;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vdb-botao-interesse:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.vdb-erro {
    color: #d9534f;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: rgba(217, 83, 79, 0.1);
    border-radius: 4px;
}

.vdb-sucesso {
    color: #5cb85c;
    padding: 15px;
    background-color: rgba(92, 184, 92, 0.1);
    border-radius: 4px;
    text-align: center;
}

#vdb-mensagem-interesse {
    margin-top: 15px;
}

.vdb-sugestao-item {
    margin-bottom: 11px;
  }
  #vdb-sugestoes {
    margin-top: 25px;
  }