body {
    background: #f2f0f0;
}

.scc-calendar-wrapper {
    max-width: 1280px;
    margin: 70px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #4f4f4f;
}

.scc-title {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 600;
    color: #555;
}

.scc-date-row {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 0 36px 74px;
}

.scc-date {
    font-size: 24px;
    font-weight: 600;
    color: #5b5b5b;
}

.scc-arrow {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    text-decoration: none;
    line-height: 1;
}

.scc-courts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: start;
}

.scc-court {
    background: #fff;
    padding: 10px;
}

.scc-court-header {
    background: #666c78;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 16px;
    text-transform: uppercase;
}

.scc-court:nth-child(3) .scc-court-header,
.scc-court:nth-child(4) .scc-court-header,
.scc-court:nth-child(5) .scc-court-header {
    background: #9098a6;
}

.scc-slot {
    min-height: 37px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(255,255,255,0.75);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.scc-available {
    background: #218e18;
}

.scc-reserved {
    background: #ae4f4f;
}

.scc-status {
    min-width: 86px;
    text-align: left;
}

.scc-status-select {
    width: 110px;
    height: 23px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-size: 14px;
    padding-left: 8px;
}

.scc-saving {
    opacity: 0.65;
}

.scc-admin-note {
    margin-top: 18px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 1100px) {
    .scc-courts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .scc-calendar-wrapper {
        margin: 35px auto;
    }

    .scc-title {
        font-size: 25px;
    }

    .scc-date-row {
        margin-left: 0;
        gap: 16px;
    }

    .scc-date {
        font-size: 19px;
    }

    .scc-courts {
        grid-template-columns: 1fr;
    }
}
