.event-wrap .event-item {
    background-color: rgba(238, 227, 217, 0.3);
    padding: 10px;    
}

.pagination {
    display: flex; /* Flexbox für nebeneinander */
    justify-content: center; /* Zentriert die Pagination */
    list-style: none; /* Entfernt die Aufzählungszeichen */
    padding: 0; /* Entfernt Padding */
}

.pagination li {
    margin: 0 5px; /* Abstand zwischen den Seitenzahlen */
}

.pagination a {
    text-decoration: none; /* Entfernt Unterstreichung */
    color: #007bff; /* Setzt die Farbe der Links */
}

.pagination li.active a,
.pagination a:hover {
    color: red;
    text-decoration: underline; /* Unterstreichung beim Hover */
}

.pagination .icon-angle-left:before {
    content: '<';
    font-family: unset;
}
.pagination .icon-angle-double-left:before {
    content: '<<';
    font-family: unset;
}
.pagination .icon-angle-right:before {
    content: '>';
    font-family: unset;
}
.pagination .icon-angle-double-right:before {
    content: '>>';
    font-family: unset;
}