.regular-schedule-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: rgba(28, 150, 166, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(28, 150, 166, 0.15);
    padding: 12px;
    margin: 0 16px;
}

.regular-schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.regular-schedule-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(15, 40, 60, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(28, 150, 166, 0.25);
    white-space: nowrap;
}

.regular-schedule-table .col-time {
    position: sticky;
    left: 0;
    z-index: 1;
    background: rgba(15, 40, 60, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    white-space: nowrap;
    min-width: 60px;
    border-right: 1px solid rgba(28, 150, 166, 0.2);
}

.regular-schedule-table thead th.col-time {
    z-index: 3;
    background: rgba(15, 40, 60, 0.95);
}

.regular-schedule-table tbody td {
    padding: 8px 12px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    min-width: 110px;
    text-align: center;
}

.rs-cell-entry {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(28, 150, 166, 0.08);
    border: 1px solid rgba(28, 150, 166, 0.12);
}

.rs-cell-entry + .rs-cell-entry {
    margin-top: 4px;
}

.rs-direction {
    font-size: 12px;
    font-weight: 600;
    color: #26d0ce;
}

.rs-trainer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}