main,
main section,
footer {
    float: left;
    width: 100%;
}
.movie-poster{
    min-width: 100%;
    overflow:hidden;
    aspect-ratio: 6/8.5;
    border-radius: 15px;
}
.movie-poster img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.calendar {
    margin: 30px 0;
}

.month-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.month-title {
    font-size: 24px;
    font-weight: bold;
    min-width: 200px;
    text-align: center;
}

.day-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 20px;
}

.day-btn {
    /*padding: 8px 12px;*/
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;

    width:40px;
    height:40px;
    line-height:40px;
    text-align: center;
    float:left;
}

.day-btn:hover {
    background: #e0e0e0;
}

.day-btn.active {
    background: #171d22;
    color: white;
}

.day-btn.today {
    position: relative;
}

.day-btn.today::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #171d22;
    border-radius: 50%;
}

.movie-list {
    float: left;
    width: 100%;
    height: auto !important
}

.movie-list h3 {
    float: left;
    width: 100%;
    padding: 15px;
}

.movie-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

.no-movies {
    padding: 20px;
    text-align: center;
    color: #666;
}

.error-message {
    color: #dc3545;
}

.month-nav {
    padding: 8px 16px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    color: #171d22;
}

.month-nav:hover:not(:disabled) {
    background: #e0e0e0;
}

.month-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.day-btn {
    position: relative;
    /*adding: 8px 12px;*/
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    color: #171d22;
}

.day-btn.has-screenings {
    border-left: 4px solid #e4d804;
    padding-left: 8px;
    /* Adjust padding to account for border */
}


.day-btn.today::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 54%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #e4d804;
    border-radius: 50%;
}

.day-btn:hover {
    background: #e0e0e0;
}

.day-btn.active {
    background: #e4d804;
    color: white;
    border-left-color: white;
    border: 1px;
}

.no-movies {
    padding: 20px;
    text-align: center;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
    margin-left: 20px;
    min-width: 300px;
}

body .accessibility-trigger.aioa_bottom_left button  {
    bottom: 55px !important;
}
.accessibility-trigger button{
    bottom: 55px !important;
}
