.filter-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.filter-input {
    padding: 6px 8px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.filter-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Filtre Formu Genel Yapı */
.event-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    border: 1px solid #eee;
}

.filter-group {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.filter-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    outline: none;
    height: 48px;
    box-sizing: border-box;
}

.filter-input:focus {
    border-color: #2c3e50;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.filter-btn {
    width: 100%;
    padding: 12px 25px;
    background-color: #1f187b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    background-color: #34495e;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .event-filter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .filter-group {
        width: 100%;
    }
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    font-family: inherit;
}

.custom-selected-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 4px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    gap: 5px;
    cursor: text;
}

.custom-selected-container:focus-within {
    border-color: #2c3e50;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.icon-ft-arrow-down {
    width: 24px;
    height: 24px;
    fill: #2c3e50;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
}

.icon-ft-datepicker {
    width: 24px;
    height: 24px;
    fill: #2c3e50;
    transition: transform 0.3s ease;
    position: absolute;
    left: 10px;
    top: 12px;
}

.datepicker-controls {
    height: 40px;
}

.datepicker-header .datepicker-controls .button {
    height: 35px;
}

.datepicker-footer {
    display: none;
}

.days-of-week {
    height: 20px;
    font-weight: normal !important;
}

.datepicker-cell {
    font-weight: normal !important;
    height: 30px;
    font-size: 16px;
}

#date-input {
    padding-left: 40px;
}

.custom-selected-container:focus-within .icon-ft-arrow-down {
    transform: rotate(180deg);
}

.custom-select-wrapper:focus-within #venue-info {
    display: none;
}

#venue-info {
    display: block;
    position: absolute;
    font-size: 14px;
    font-weight: normal;
}

#reset-date {
    position: absolute;
    right: 14px;
    top: 2px;
}

.custom-select-search {
    flex: 1;
    min-width: 120px;
    border: none;
    outline: none;
    padding: 5px;
    background: transparent;
    font-size: 14px;
    color: #333;
    height: 30px;
    /* Adjust height inside container */
}

/* Override previous styles if needed */
.custom-select-search:focus {
    box-shadow: none;
    /* Container handles focus style */
    background-color: transparent;
}

.custom-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e0e7ff;
    color: #1f187b;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.custom-badge-remove {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.custom-badge-remove:hover {
    opacity: 1;
    color: #ff0000;
}

.custom-options-list {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-options-list.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}

.custom-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    color: #333;
}

.custom-option:hover {
    background-color: #f1f1f1;
}

.custom-option.selected {
    background-color: #eef2f7;
    font-weight: 600;
}

.custom-option.hidden {
    display: none;
}

#performance-filter-form {
    width: 100%;
    max-width: 800px;
}

.datepicker {
    width: 300px;
}

.datepicker .datepicker-view {
    width: 100%;
}





/* Slick yüklenene kadar sadece ilk slide'ı göster ve yüksekliği koru */
.collection-carousel:not(.slick-initialized) .collection-carousel__slide {
    display: none;
}

.collection-carousel:not(.slick-initialized) .collection-carousel__slide:first-child {
    display: block;
}

.collection-carousel .slick-slide {
    outline: none;
}

.collection-carousel .slick-prev,
.collection-carousel .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.collection-carousel .slick-prev:hover,
.collection-carousel .slick-next:hover {
    background: #fff;
}

.collection-carousel .slick-prev {
    left: -20px;
}

.collection-carousel .slick-next {
    right: -20px;
}

.collection-carousel .slick-prev:before,
.collection-carousel .slick-next:before {
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: #333;
}

.collection-carousel .slick-prev:before {
    content: '←';
}

.collection-carousel .slick-next:before {
    content: '→';
}


.collection-carousel .slick-dots {
    bottom: -30px;
}

/* Fix for massive height - Only for list */
.collection-carousel .slick-list {
    max-height: 450px !important;
    overflow: hidden !important;
}

.collection-carousel {
    padding-bottom: 40px;
}

#venue-input-container.passive .custom-badge {
    display: none;
}