
.calendar-box {
    width: 100%;
    height: 75vh !important;
    display: flexbox;
    flex-direction: row !important;
    margin-bottom: 100px;
    padding-top: 6px;
    border-bottom: 6px solid black;
}

.calendar::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    height: 5px;
}

.calendar::-webkit-scrollbar-thumb {
    background-color: #5c5c5c; /* Color of the scrollbar thumb */
    border-radius: 5px; /* Radius of the scrollbar thumb corners */
}

.calendar::-webkit-scrollbar-track {
    background-color: #020225; /* Color of the scrollbar track */
}

.mo-calendar-box {
    width: 100%;
    height: 644px;
}

#calendar-header {
    display: flex;
    height: 100%;
    justify-content: center;
    width: 40%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: start !important;
    flex-direction: column;
    background-color: #020225;
    border-right: 8px solid rgba(255,255,255,0.05);
}

.calendar-header-divider {
    margin-bottom: 12px;
    opacity: 0.5;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#calendar-header-image {
    width: 50%;
    margin-bottom: 18px;
}

#calendar-header h1 {
    font-size: 36px;
    line-height: 50px;
}

#calendar-header p {
    font-size: 16px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.8);
}

.calendar, .mo-calendar {
    height: 100%;
    width: 100%;
    background-color: #000000;
    box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: left;
    overflow-x: auto;
    overflow-y: auto;
    white-space: nowrap;
}

.date-card {
    display: inline-block;
    width: 180px;
    height: 100%;
    background-color: #141414;
    border-right: 3px solid #181818;
    border-left: 7px solid #181818;
}

.date-text-box {
    height: 50px;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    font-size: 14px;

    text-align: center;
    font-weight: 600;
    box-shadow: 2px 2px 10px 4px rgba(0, 0, 0, 0.5);
}

.date-text, .movie-date-text, .movie-text, p, h1 {
    color: azure;
    overflow: hidden;
}

.movie-time-text {
    font-weight: 300;
    font-size: 12px;
    display: inline-block;
}

.movie-time-box {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.movie-container {
    width: 100%;
    flex-direction: column;
    display: flex;
    height: 275px;
    margin-top: 12px;
}

.movie-box {
    position: relative;
    display: block;
    margin-top: 5.33px;
    margin-bottom: 10px;
    margin-left: 4%;
    margin-right:4%;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.3);
    width: 92%;
    height: 210px; 
    background-color: white;
}

.action-button-left:hover, .action-button-right:hover, .mo-action-button:hover {
    scale: 1.2;
    transition: 200ms ease;
}

.poster-image, .movie-box {
    border-radius: 1%;
}

.poster-image {
    width: 100%;
    height: 100%;
    display: block;
}

.movie-overlay {
    padding-top: 64px;
    width: 100%;
    bottom: 0;
    z-index: 1;
    position: absolute;
    background-image: linear-gradient(to top, rgba(0,0,0,1),rgba(0,0,0,0.85), rgba(0,0,0,0.6), rgba(0,0,0,0.0));
}

.movie-title {
    width: 128px;
    font-size: 14px;
    padding-left: 8px;
    padding-top: 13px;
    font-weight: 500;
    line-height: 24px;
    text-overflow: ellipsis;
    text-align: start !important;
    overflow: hidden;
    white-space:nowrap;
}

.genre-title {
    width: 128px;
    font-size: 11px;
    padding-left: 8px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.7);
    line-height: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: start !important;
    white-space:nowrap;
    height: 20px;
}

.movie-action-buttons {
    width: 100%;
    height: 32px;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
}

.action-button-left, .action-button-right {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 0px;
    color: azure;
    font-weight: 300;
    font-size: 11px;
    line-height: 12px;
    cursor: pointer;
    border-radius: 3%;
}

.mo-action-button {
    width: 100%;
    height: 100%;
    background-color: rgba(200, 20, 20, 0.8);
    color: azure;
    border: 0px;
    font-weight: 300;
    font-size: 11px;
    line-height: 12px;
    cursor: pointer;
    border-radius: 3%;
}

.action-button-right {
    width: 53%;
    background-color: rgba(200, 20, 20, 0.8);
}

.action-button-left {
    width: 44%;
    color: azure;
}

.action-button-right:hover, .mo-action-button:hover, .action-button-left:hover {
    background-color: rgba(200, 20, 20, 1);
    color: azure;
    box-shadow: 2px 2px 2px 2px rgba(20, 20, 20, 0.3);
}