:root {
    --primary-color: #0d6efd;
    --accent-color: #22c55e;
    --border-color: #e5e7eb;
}

/* Sidebar Styles */
.sidebar {
    background: white;
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    position: sticky;
    /*top: 76px;*/
    /*overflow-y: auto;*/
}

.sidebar h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: block;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.input-with-icon input {
    padding-left: 2rem;
}

.btn-apply {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-apply:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.quick-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.quick-links h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.quick-links a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-search-wrapper {
        display: none;
    }
}