.weekly-showtimes {
    float: right;
    width: 240px;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: lightgray;
    background-image: url("assets/multi175.0d8c62916969.jpg");
    background-repeat: repeat;
    background-size: 100px 100px;
    border: 2px outset lightgray;
    padding: 12px;
}

.week-header {
    display: flex;
    background: lightgray;
    margin: -12px -12px 12px -12px;
}

.day-button {
    flex: 1;
    background: rgb(157, 157, 157);
    color: black;
    border: 2px outset rgb(157, 157, 157);
    padding: 6px 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.day-button:hover {
    background: #d7d7d7;
    border: 2px inset rgb(157, 157, 157);
}

.day-button.active {
    background: #d7d7d7;
    border: 2px inset rgb(157, 157, 157);
    color: #000;
}

.selected-date {
    font-weight: bold;
    margin: 12px 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: white;
}

.showtimes-list {
    margin: 12px 0;
    max-height: 250px;
    overflow-y: auto;
    background: lightgray;
    border: 2px inset lightgray;
    padding: 12px;
}

.showtime-item {
    margin: 10px 0;
}

.movie-title {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

.movie-title a {
    color: inherit;
}

.showtime {
    margin-left: 0;
    font-size: 0.85rem;
    color: black;
}

.showtime-separator {
    border: 1px inset rgb(237, 237, 237);
    width: 100%;
    height: 0px;
    margin: 10px 0;
    display: block;
    box-sizing: border-box;
    flex-shrink: 0;
}

.showtime a:hover {
    text-decoration: underline;
}

.all-showtimes-link {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}

.all-showtimes-link a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.all-showtimes-link a:hover {
    text-decoration: underline;
}

.showtime-sold-out {
    text-decoration: line-through;
    color: #999;
}

.no-showtimes {
    font-style: italic;
    color: black;
    font-size: 0.85rem;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 500px) {
    .weekly-showtimes {
        float: none;
        width: 100%;
        max-width: 300px;
        margin: 15px auto;
        order: 2;
    }
}

