/* 
   Estilos para la página de Detalles del Coachee
   KW Campestre
*/

body {
    background-color: #f8f9fa;
}

/* Meta info del coachee */
.coachee-meta {
    font-size: 1rem;
    color: var(--text-light);
}

/* Tarjetas */
.card {
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.card-header {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 1.25rem;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
}

/* Tarjeta Coachee (izquierda) */
.coachee-card .coachee-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.coachee-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem; /* Menor margen superior */
    margin-bottom: 0.25rem;
}

.summary-table th {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.85rem;
    border: none;
    padding: 0.3rem 0;
}

.summary-table td {
    font-size: 0.9rem;
    border: none;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
}

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

/* Tarjeta Coach (derecha) */
.coach-info-table th {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.85rem;
    border: none;
    padding: 0.75rem 1.25rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.coach-info-table td {
    font-size: 0.9rem;
    border: none;
    padding: 0.75rem 1.25rem;
}

.coach-info-table .coach-id {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.coach-info-table .coach-id:hover {
    text-decoration: underline;
}

/* Tarjeta Medición CAP (derecha) */
.cap-metrics-table th {
    font-weight: 600;
    font-size: 0.8rem; /* Más pequeño */
    padding: 0.5rem 0.2rem; /* Menos padding */
    border: none;
    border-bottom: 1px solid #eee;
}

.cap-metrics-table td {
    font-size: 0.9rem;
    padding: 0.5rem 0.2rem;
    border: none;
    border-top: 1px solid #eee;
}

.cap-metrics-table tr:last-child td {
    font-weight: 600;
    color: var(--text-light);
}

/* Tarjetas Actividades (derecha) - Reutiliza .activities-card de Coaches.css si es el mismo estilo */
.activities-card .card-header {
    font-size: 1.1rem;
}

.create-activity-btn {
    background-color: #28a745;
    border-color: #28a745;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
}

.create-activity-btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.activities-card .card-body {
    padding: 2rem;
}

.activities-card .btn-outline-secondary {
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
}


/* Tarjeta Productividad (derecha) - Reutiliza .productivity-card y .productivity-summary-table de Coaches.css */
.productivity-card .card-header {
    font-size: 1.1rem;
}

.productivity-summary-table th {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.85rem;
    border: none;
    padding: 0.75rem 1.25rem;
    background-color: #f8f9fa;
}

.productivity-summary-table td {
    font-size: 0.9rem;
    border: none;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #eee;
}


/* Responsivo */
@media (max-width: 991.98px) {
    .cap-metrics-table th, .cap-metrics-table td {
        font-size: 0.75rem;
        padding: 0.4rem 0.1rem;
    }
}

@media (max-width: 767.98px) {
    .coachee-meta {
        font-size: 0.9rem;
    }
    .card-body {
        padding: 1rem;
    }
    .summary-table th,
    .summary-table td,
    .productivity-summary-table th,
    .productivity-summary-table td {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    .coach-info-table th, .coach-info-table td {
         padding: 0.5rem 1rem;
    }
} 