/* Styles front-end pour TLS Coaching Integration */

.tls-mon-coaching {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tls-coaching-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tls-coaching-section h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* Affichage crédits */
.tls-credits-display {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
    margin: 20px 0;
}

.tls-credits-number {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tls-credits-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Historique crédits */
.tls-credits-history {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tls-credits-history th,
.tls-credits-history td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tls-credits-history th {
    background: #f8f9fa;
    font-weight: 600;
}

.tls-credits-history .positive {
    color: #28a745;
    font-weight: bold;
}

.tls-credits-history .negative {
    color: #dc3545;
    font-weight: bold;
}

/* Liste des séances */
.tls-sessions-list {
    list-style: none;
    padding: 0;
}

.tls-session-item {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.tls-session-item .session-date {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tls-session-item .session-coach,
.tls-session-item .session-objective,
.tls-session-item .session-status {
    margin: 5px 0;
    color: #555;
}

.tls-session-item .session-link {
    margin-top: 15px;
}

/* Compte rendu */
.tls-compte-rendu {
    background: #f0f8ff;
}

.compte-rendu-content h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tls-taches-list {
    list-style: none;
    padding: 0;
}

.tls-tache-item {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid #28a745;
}

.tache-echeance {
    display: block;
    color: #6c757d;
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .tls-mon-coaching {
        padding: 10px;
    }
    
    .tls-coaching-section {
        padding: 20px;
    }
    
    .tls-credits-number {
        font-size: 48px;
    }
}

