/* Training schedule page styles */
.schedule-section {
    padding: 50px 0;
}

.schedule-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: #4c6b4c;
    max-width: 640px;
    margin: -10px auto 35px;
    font-size: 1rem;
}

.session-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.session-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e7efe7;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.session-card.confirmed {
    border-color: #c2e5c2;
}

.session-card.tentative {
    border-color: #ffe0b2;
}

.session-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c5f2d;
}

.session-time {
    font-size: 1rem;
    color: #1f3d1f;
}

.session-location {
    font-size: 1rem;
    color: #444;
}

.session-details {
    border-top: 1px solid #edf5ed;
    padding-top: 12px;
    margin-top: 4px;
    font-size: 0.95rem;
    color: #2c2c2c;
}

.session-details p:last-child {
    margin-bottom: 0;
}

.session-details.compact {
    border: none;
    padding-top: 10px;
    margin-top: 0;
    font-size: 0.9rem;
    color: #4b4b4b;
}

.session-note-row td {
    background: #fbfdfb;
}

.session-comments {
    margin-top: 8px;
}

.session-comment-panel {
    border-top: 1px solid #edf1ed;
    padding-top: 12px;
}

.session-comment-panel summary {
    cursor: pointer;
    font-weight: 600;
    color: #2c5f2d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.session-comment-panel summary::after {
    content: '\25BC';
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.session-comment-panel[open] summary::after {
    transform: rotate(180deg);
}

.session-comment-body {
    margin-top: 14px;
}

.session-comment-section {
    border-top: 1px solid #edf1ed;
    padding-top: 18px;
}

.session-comment-section .comments-header h3 {
    font-size: 1.05rem;
    color: #2c5f2d;
}

.session-comment-section .comment-form {
    background: #f7fbf7;
    border: 1px solid #dfeadf;
    border-radius: 10px;
    padding: 16px;
}

.history-details {
    background: #f6fbf6;
    border: 1px solid #d9ead9;
    border-radius: 12px;
    padding: 20px 24px;
}

.history-details summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c5f2d;
}

.history-details[open] summary {
    margin-bottom: 12px;
}

.history-table {
    margin-top: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
}

.status-badge.confirmed {
    background: rgba(44, 95, 45, 0.1);
    color: #1a6d1a;
}

.status-badge.tentative {
    background: rgba(255, 193, 7, 0.15);
    color: #b37400;
}

.no-sessions {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #c8d6c8;
}

.contact-card {
    background: #f7fbf7;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #d9ead9;
}

.contact-card h3 {
    margin-top: 0;
    color: #2c5f2d;
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.contact-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.past-sessions {
    padding: 40px 0 20px;
}

.past-sessions h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.past-sessions table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.past-sessions th,
.past-sessions td {
    padding: 14px 18px;
    text-align: left;
}

.past-sessions th {
    background: #f0f7f0;
    font-weight: 600;
    color: #2c5f2d;
}

.past-sessions tr + tr {
    border-top: 1px solid #eef2ee;
}

@media (max-width: 600px) {
    .session-card {
        padding: 20px;
    }
}
