/* Filter Forms - Shared styles for books and dealers */
.books-search-area .search-filter-form,
.dealer-search-area .search-filter-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.books-search-area .form-label,
.dealer-search-area .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.books-search-area .form-select,
.books-search-area .form-control,
.dealer-search-area .form-select,
.dealer-search-area .form-control {
    height: 48px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.books-search-area .form-select:focus,
.books-search-area .form-control:focus,
.dealer-search-area .form-select:focus,
.dealer-search-area .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
    outline: none;
}

.books-search-area #clearSearch,
.dealer-search-area #clearSearch {
    height: 48px;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0;
}

/* Select2 özelleştirme */
.select2-container--bootstrap-5 .select2-selection {
    height: 48px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 15px !important;
    font-size: 15px !important;
}

.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #0066cc !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25) !important;
}

.select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
}

/* Disabled durumu için Select2 */
.select2-container--bootstrap-5.select2-container--disabled .select2-selection {
    background-color: #e9ecef !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.select2-container--bootstrap-5.select2-container--disabled .select2-selection__rendered {
    color: #6c757d !important;
}