body {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    background-attachment: fixed;
}

/* Ensure industry filter checkboxes are always visible (checked or unchecked) */
.industry-checkbox {
    appearance: auto;
    -webkit-appearance: auto;
    background-color: #ffffff;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.25rem;
    accent-color: #7c3aed;
}
.industry-checkbox:checked {
    background-color: #7c3aed;
    border-color: #7c3aed !important;
}

/* Custom scrollbar for filter area */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
