.drpPastEvents{
    border: 1px solid #000;
    border-radius: 0px;
    --cui-date-picker-focus-border-color: none;
    --cui-date-picker-focus-box-shadow: none
    /* --cui-date-picker-focus-border-color: #e54b61; /* Change to red */
    /* --cui-date-picker-focus-box-shadow: 0 0 0 0.25rem rgba(229, 75, 97, 0.25) */
}

.drpPastEvents .date-picker-separator::before{
    background-color: #000;
}

.drpPastEvents .date-picker-indicator::before{
    background-color: #000;
}

.drpPastEvents .calendar-cell.range.current{
    background-color: #e54b612b;
}

.drpPastEvents .calendar-cell-inner.day::after{
    background: #e54b612b;

}
.drpPastEvents .calendar-cell.selected:not(th,.next,.previous) .calendar-cell-inner, .calendar-row.selected:not(th,.next,.previous) .calendar-cell-inner{
    background-color: #e54b61;
}
.drpPastEvents .calendar-cell.range-hover:first-of-type .calendar-cell-inner::before, .calendar-cell:not(.range-hover)+.calendar-cell.range-hover .calendar-cell-inner::before{
    border-color: #e54b61;
}
.drpPastEvents .calendar-cell.range-hover .calendar-cell-inner::before, .calendar-row.range-hover .calendar-cell-inner::before{
    border-color: #e54b61;
}
.drpPastEvents  .calendar-cell.range-hover:not(:has(~ .range-hover)) .calendar-cell-inner::before{
    border-color: #e54b61;
}
.drpPastEvents .calendar-nav-date .btn:hover{
    color: #e54b61;
}

.drpPastEvents.date-picker:focus{
    border-color: red;
}
section#filters{
    border-bottom: none;
}
.search-pev{
    font-size: 1.2rem;
    outline: none;
    border-bottom: 1px solid #858585 !important;
    border: none;
    font-family: 'FranklinGothicBook', Arial, sans-serif;
    text-align: left;
    width: 100%;
    padding: 5px;
    border-radius: 0;
}

/* Filter Badges */
.filter-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 30px;
}

.filter-badge:hover {
    background-color: #e54b61;
}

.filter-badge .badge-text {
    white-space: nowrap;
}

.filter-badge .badge-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #fff;
    text-decoration: none;
}

.filter-badge .badge-remove svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 2;
}

/* RTL Support for Filter Badges */
[dir="rtl"] .filter-badges-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .filter-badge {
    flex-direction: row-reverse;
}