/* Estilos generales del plugin */
.gestion-turnos-plugin {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
}

/* Estilo para la sección de turnos en el perfil */
h3.informacion-turnos {
    color: #2c3e50;
    font-size: 1.5em;
    margin: 1.5em 0 0.8em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #3498db;
}

/* Tabla de campos del perfil */
.form-table {
    width: 100%;
    margin-bottom: 1.5em;
}

.form-table th {
    width: 200px;
    font-weight: 600;
    color: #2c3e50;
    padding: 10px 0;
    vertical-align: top;
}

.form-table td {
    padding: 10px 0;
}

.form-table select {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #f8f9fa;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-table select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

/* Estilo para el shortcode de empleados */
.turno-empleado {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
}

.turno-empleado p {
    margin: 0;
    font-size: 1.2em;
    color: #2c3e50;
    font-weight: 500;
}

/* Estilo para el panel de coordinadores */
.gestion-turnos-coordinador {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5eb;
}

.gestion-turnos-coordinador h2 {
    color: #2c3e50;
    margin: 0 0 1.5em 0;
    font-size: 1.6em;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

/* Tabla de gestión de turnos */
.wp-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wp-list-table thead th {
    background-color: #3498db;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.wp-list-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #e1e5eb;
    vertical-align: middle;
}

.wp-list-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.wp-list-table tbody tr:hover {
    background-color: #e3f2fd;
}

.wp-list-table select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: white;
    font-size: 0.95em;
}

/* Botón de actualizar */
.button.button-primary {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button.button-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

/* Notificaciones */
.notice {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 6px;
    border-left: 4px solid;
    font-size: 1em;
}

.notice-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left-color: #4caf50;
}

.notice-error {
    background-color: #ffebee;
    color: #c62828;
    border-left-color: #f44336;
}

/* Responsive */
@media (max-width: 768px) {
    .gestion-turnos-coordinador {
        padding: 20px;
        margin: 20px 15px;
    }
    
    .wp-list-table {
        display: block;
        overflow-x: auto;
    }
    
    .form-table th,
    .form-table td {
        display: block;
        width: 100%;
    }
    
    .form-table select {
        max-width: 100%;
    }
}