/* Estilos para el contenedor principal del filtro */
#filtro {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #0c315f;
}

/* Estilos para las etiquetas de los selectores */
#filtro .filtro-label { 
    display: block;
    margin-bottom: 5px;
    color: #0c315f; /* Color de texto #0c315f */
    font-weight: bold;
}

/* Estilos para los selectores */
#filtro select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Estilos para el botón */
#filtro button {
    background-color: #e67e24;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#filtro button:hover {
    background-color: #d35400;
}

#filtro button:disabled {
    background-color: #bdc3c7;
    cursor: default;
}


/* Listado de DENTISTAS*/

/* Estilos para la tabla de dentistas */
.list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff; /* Fondo blanco para la tabla */
    border-radius: 8px; /* Bordes redondeados */
    overflow: hidden; /* Asegura que los bordes redondeados se apliquen correctamente */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

.list-table th,
.list-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee; /* Separador entre filas */
}

.list-table th {
    background-color: #f0f0f0; /* Color de fondo para encabezados */
    font-weight: bold;
    color: #0c315f; /* Color de texto para encabezados */
}

.list-table tr:last-child td {
    border-bottom: none; /* Elimina el borde inferior de la última fila */
}

.list-table .details-button {
    background-color: #e67e24;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.list-table .details-button:hover {
    background-color: #d35400;
}

/* Estilos para el mensaje de no resultados */
.list-table + p {
    margin-top: 20px;
    text-align: center;
    color: #0c315f;
}