.sidebar {
    transition: transform 0.3s ease-in-out;
}

/* price range */
.noUi-connect{
    background:#3b82f6 !important;
}
.noUi-tooltip{
    display: none !important;
}
.noUi-horizontal .noUi-handle{
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
}
.custom-checkbox:checked {
    @apply bg-blue-500 border-blue-500;
}

.custom-checkbox:checked::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 1.25rem;
    font-size: 0.875rem;
}

/* end price range */

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        transform: translateX(-100%);
        z-index: 50;
        background: white;
        overflow-y: auto;
    }

    .sidebar.active {
        transform: translateX(0);
    }
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #ff6600;
    border-radius: 50%;
    cursor: pointer;
}

/* Overlay for sidebar on mobile */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

.overlay.active {
    display: block;
}