.schedule-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    border: 1px solid #000;
    border-right: none;
    border-bottom: none;
    box-sizing: border-box;
}

.schedule-cell {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0 0 20px;
    background: #fff;
    text-align: center;
    min-height: 250px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.schedule-header {
    background: #f8982b;
    border-bottom: 1px solid #000;
    color: #000;
    font-weight: bold;
    min-height: 50px;
    padding: 0 8px;
    margin: 0 0 10px;
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.schedule-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    padding: 10px;
}

.movie-title a {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
    color: #000;
    text-decoration: none !important;
}

.showtime-label {
    font-size: 15px;
    color: #444;
}

.showtime {
    font-size: 15px;
}

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

.movie-title.closed {
    font-size: 16px;
    color: #000;
    margin-top: 5px;
}
