/* Container styling */
.price-filter-container {
    width: 24rem; /* w-96 = 384px (1rem = 16px) */
    border-radius: 0.125rem; /* rounded-sm */
    border: 1px solid #e5e7eb; /* border-gray-200 */
    background-color: #ffffff; /* bg-white */
}

/* Container styling */
.price-filter-container {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    margin-top: 14px;
}

.checkbox-filter-container-9741 {
    border-radius: 2px;
    border: 1px solid #e5e7eb;
}

/* Header styling */
.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px; /* 1rem = 1 × 16 */
}

/* Header text */
.header-text {
    font-size: 14px; /* 0.875rem = 0.875 × 16 */
    color: #4b5563;
}

/* Reset button */
.reset-button {
    font-size: 14px; /* 0.875rem */
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Body styling */
.filter-body {
    border-top: 1px solid #e5e7eb;
    padding: 16px; /* 1rem */
}

/* Price inputs container */
.price-inputs {
    display: flex;
    justify-content: space-between;
    gap: 16px; /* 1rem */
}

/* Label styling */
.input-label {
    display: flex;
    align-items: center;
    gap: 8px; /* 0.5rem = 0.5 × 16 */
}

/* Currency symbol */
.currency-symbol {
    font-size: 14px; /* 0.875rem */
    color: #6b7280;
}

/* Input styling */
.price-input {
    width: 100%;
    border-radius: 6px; /* 0.375rem = 0.375 × 16 */
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 14px; /* 0.875rem */
    padding: 8px; /* 0.5rem */
    outline: none;
}

.price-input:focus {
    border-color: #f1ad9c;
    box-shadow: 0 0 0 3px rgba(241, 173, 156, 0.3);
}

/* Placeholder styling */
.price-input::placeholder {
    color: #9ca3af;
}

#price_range {
    margin-top: 20px;
}


.custom-scroll-9843 {
    height: 100%;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin; /* Wąski pasek przewijania (Firefox) */
    scrollbar-color: #9ca3af #f1f5f9; /* Kolor suwaka i tła */
}

/* Dla przeglądarek WebKit (Chrome, Edge, Safari) */
.custom-scroll-9843::-webkit-scrollbar {
    width: 8px; /* Szerokość paska */
}

.custom-scroll-9843::-webkit-scrollbar-track {
    background: #f1f5f9; /* Tło paska */
    border-radius: 10px; /* Zaokrąglenie */
}

.custom-scroll-9843::-webkit-scrollbar-thumb {
    background: #9ca3af; /* Kolor suwaka */
    border-radius: 10px; /* Zaokrąglenie */
}

.custom-scroll-9843::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* Ciemniejszy odcień przy najechaniu */
}