.theatre_pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding-left: 0;
    justify-content: center;
    margin-top: 40px;
}

.theatre_pagination li {
    display: inline;
}

.theatre_pagination a,
.theatre_pagination span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 16px;
    text-decoration: none;
    color: #7e0926;
    border: 1px solid #7e0926;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.theatre_pagination .current,
.theatre_pagination a:hover,
.theatre_pagination a:focus {
    background-color: #7e0926;
    color: #fff;
}