
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}


.main-content {
    flex: 1; 
}


.footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}


.titulo-pesquisa {
    font-size: 1.75rem;
    font-weight: bold;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.titulo-pesquisa::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00509e;
}


.pesquisa-form {
    max-width: 900px;
    margin: 0 auto;
}


.form-floating label i {
    color: #6c757d; 
    margin-right: 5px;
}


.btn-primary {
    background-color: #00509e;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #003366;
}

.btn-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}


.hero {
    margin-bottom: 0;
    padding-bottom: 40px; 
}


.pesquise_servidor {
    margin-top: -10px; 
    padding-top: 20px;
    background-color: #f8f9fa;

}
.instrucoes-pesquisa {
    font-size: 0.95rem;
    color: #6c757d; 
    text-align: center;
    margin-bottom: 15px;
}


.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table thead {
    background-color: #00509e; 
}

.table th {
    background-color: rgb(192, 192, 192);
    color: #00509e; 
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: #e0f7ff; 
    cursor: pointer;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    color: #495057; 
}


.table tbody tr:last-child td {
    border-bottom: none;
}

* Estilo para o link da cadeira de rodas */
.link-cadeira-rodas {
    text-decoration: none;
    color: #00509e; 
}

.link-cadeira-rodas:hover {
    color: #003366; 
}


.link-editar {
    text-decoration: none; 
    color: #00509e; 
}

.link-editar:hover {
    color: #003366; 
}