.theatre_dropdown {
    position: relative;
}

.theatre_dropdown_toggle {
    background-color: #fff;
    color: #7e0926;
    border: 1px solid #7e0926;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0;
}

.theatre_dropdown_toggle:focus-visible,
.theatre_dropdown_menu a:focus-visible {
    outline: 3px solid #ffcc00;
    outline-offset: 2px;
}

.theatre_dropdown_menu {
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin-top: 10px;

    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theatre_dropdown_menu.is-open {
    display: block;
    position: absolute;
    top: 100%;
    z-index: 3;
}

.theatre_dropdown_menu li {
    border-bottom: 1px solid #eee;
}

.theatre_dropdown_menu li:last-child {
    border-bottom: none;
}

.theatre_dropdown_menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
}

.theatre_dropdown_menu a:hover,
.theatre_dropdown_menu a:focus {
    background-color: #f0f0f0;
    color: #000;
}
