/* UiTMart Portal Custom Styles */

:root {
    --transition-speed: 0.3s;
    --border-color: rgba(228, 228, 230, 0.8);
    --bg-card: #ffffff;
    --text-secondary: #71717a;
    --font-body: 'Hanken Grotesk', 'Inter', sans-serif;
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
    --border-color: rgba(63, 63, 70, 0.6);
    --bg-card: #18181b;
    --text-secondary: #a1a1aa;
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -7px rgba(0, 0, 0, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(161, 161, 170, 0.3);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(161, 161, 170, 0.5);
}
