/* Explain: Editorial components for blade nav, cards, forms, and filters. - */
/* Component Styles are mostly handled by Tailwind and DaisyUI now.
   Retaining only global component overrides if necessary. */

/* Custom Scrollbar for a luxury feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--background-color);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--copper-color);
}