/* Global Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-left: 1px solid #333;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
    border: 2px solid #1a1a1a; /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #444 #1a1a1a;
}

/* General Body Styling - Premium Feel */
body {
    background-color: #f8f9fa; /* Light mode default */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Navbar Tweaks */
.navbar-brand {
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Card Tweaks */
.card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
}

.card-header {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    font-weight: 500;
}
