/* Styles pour le tableau de planning dynamique */
.planning-container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.planning-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.planning-title-main {
    color: #00a8cc;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.planning-info {
    font-size: 14px;
    color: #666;
}

.planning-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
    min-width: 800px;
}

.planning-table th {
    background-color: #00acdc;
    color: white;
    text-align: center;
    padding: 12px 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.planning-table td {
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 10px 5px;
    height: 60px;
    vertical-align: middle;
    font-size: 12px;
}

.planning-time {
    background-color: #f9f9f9;
    font-weight: 700;
    width: 70px;
}

.slot-coach {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.slot-activity {
    font-size: 10px;
    display: block;
    margin-bottom: 2px;
    color: #888;
}

/* Couleurs des coachs basées sur l'image */
.coach-jerome { color: #2e7d32; }
.coach-coraline { color: #e91e63; }
.coach-justine { color: #9c27b0; }
.coach-thomas { color: #ef6c00; }
.coach-mylene { color: #455a64; }
.coach-kevin { color: #1565c0; }
.coach-frederic { color: #c62828; }
.coach-rachel { color: #ad1457; }

.planning-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .planning-container {
        padding: 15px;
    }
    .planning-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
