/**
 * Standard UI Theme v1.0
 * Based on Bootstrap 5 with Light/Dark Mode Support
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Inter', sans-serif;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

/* Theme Toggle Button Styles */
#theme-toggle {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    border: 1px solid rgba(0,0,0,0.1);
}

[data-bs-theme="dark"] #theme-toggle {
    border-color: rgba(255,255,255,0.1);
}

#theme-toggle:hover {
    background-color: rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] #theme-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Cards and Panels */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

[data-bs-theme="dark"] .card {
    background-color: #1e1e1e;
    border-color: #333;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .navbar {
    border-color: rgba(255,255,255,0.05);
}

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

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

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

[data-bs-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #444;
}

/* Reverting Premium Utilities to Standard */
.glass-panel { background: inherit; backdrop-filter: none; border-radius: 8px; border: 1px solid rgba(0,0,0,0.1); }
[data-bs-theme="dark"] .glass-panel { border-color: rgba(255,255,255,0.1); }
.hero-title { font-weight: 700; background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }
.btn-premium { background: var(--primary-color); border-radius: 6px; box-shadow: none; }
.text-primary-glow { text-shadow: none; color: var(--primary-color); }