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

:root {
    /* Refined Color Palette - Varsity Blue & Stadium Green */
    --bs-primary: #2563EB;
    /* Varsity Blue */
    --bs-primary-rgb: 37, 99, 235;
    --bs-success: #10B981;
    /* Stadium Green */
    --bs-success-rgb: 16, 185, 129;
    --bs-warning: #F59E0B;
    /* Gold */
    --bs-warning-rgb: 245, 158, 11;

    --bs-body-font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --bs-heading-font-family: 'Oswald', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

[data-bs-theme="dark"] {
    /* Slate Background for Premium Feel */
    --bs-body-bg: #0F172A;
    --bs-body-bg-rgb: 15, 23, 42;
    --bs-body-color: #f8f9fa;

    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

body {
    font-family: var(--bs-body-font-family);
    -webkit-font-smoothing: antialiased;
    /* Override Bootstrap min-vh-100 (100vh) — on mobile Chrome, 100vh is the
       "large viewport" which ignores dynamic browser chrome (URL bar/toolbar).
       100dvh tracks the actual visible viewport, preventing fixed-bottom
       elements from jumping when browser UI appears/disappears. */
    min-height: 100dvh !important;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Glassmorphism for Sticky Navbar */
.sticky-top .navbar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-heading-font-family);
    font-weight: 600;
    /* Oswald looks good at 500/600 */
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.page-header-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bs-primary);
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

[data-bs-theme="dark"] .page-header-title {
    color: #fff;
}

.page-header-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--bs-warning);
    border-radius: 2px;
}

.navbar-brand {
    font-family: var(--bs-heading-font-family);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1.5rem;
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Primary Button Polish */
.btn-primary {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(var(--bs-primary-rgb), 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(var(--bs-primary-rgb), 0.3);
}

/* Floating Action Bar (Selection Page) */
.submit-picks-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1025;
    padding: 1rem 0;
    transition: all 0.3s ease;
    /* Mobile Defaults - Floating Action Button */
    position: fixed;
    bottom: calc(85px + env(safe-area-inset-bottom));
    /* Clear bottom nav */
    left: auto;
    right: 1.5rem;
    width: auto;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    pointer-events: none;
    /* Let clicks pass through container area */
}

/* Enable pointer events on the button itself */
.submit-picks-container .btn {
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    .submit-picks-container .container {
        padding: 0;
        width: auto;
        margin: 0;
    }

    .btn-submit-fab {
        width: 72px !important;
        height: 72px !important;
        border-radius: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5) !important;
        animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}

@keyframes popIn {
    from {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .submit-picks-container {
        position: fixed;
        bottom: 40px !important;
        /* Raised slightly for better visual balance */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        min-width: 600px;
        border-radius: 16px;
        border: 1px solid var(--glass-border);
        padding: 1rem 2rem;
        pointer-events: auto;
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: block !important;
    }
}

/* Glassmorphism for Bottom Nav */
.navbar.fixed-bottom.glass {
    background: rgba(255, 255, 255, 0.85) !important;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
    padding-top: 0.5rem;
    z-index: 1040;
}

/* Mobile bottom nav responsive padding (safe area for notched devices) */
.mobile-nav-bar {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Mobile nav icon label - consistent size across all nav items */
.mobile-nav-label {
    font-size: 0.75rem;
}

[data-bs-theme="dark"] .navbar.fixed-bottom.glass {
    background: rgba(15, 23, 42, 0.85) !important;
}

/* Ensure bottom nav dropup menus render above back-to-top button (z-index 1030) */
.navbar.fixed-bottom .dropup .dropdown-menu {
    z-index: 1035;
}

/* Mobile Bottom Nav Active State */
.navbar.fixed-bottom .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar.fixed-bottom .nav-link.active {
    color: var(--bs-primary) !important;
}



/* Subtle Glow Background */
.navbar.fixed-bottom .nav-link.active i {
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
}

/* Toast Notification Styles */
.toast-container {
    z-index: 1060;
}

.toast {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

[data-bs-theme="dark"] .toast {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.toast-body {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Toast Variants (using Bootstrap text-bg utilities but refining transparency) */
.toast.text-bg-success {
    background: rgba(16, 185, 129, 0.9) !important;
    color: #fff !important;
}

.toast.text-bg-danger,
.toast.text-bg-error {
    background: rgba(220, 53, 69, 0.9) !important;
    color: #fff !important;
}

.toast.text-bg-warning {
    background: rgba(245, 158, 11, 0.9) !important;
    color: #000 !important;
}

.toast.text-bg-info {
    background: rgba(13, 202, 240, 0.9) !important;
    color: #000 !important;
}

/* --- SHARED STYLES (Layout & Sizing) --- */
.team-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    border: 2px solid;
    border-radius: 12px;
    /* Softer corners */
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    /* Disables double-tap zoom for faster click response */
    /* Ensure consistency across tiles */
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

.team-logo-lg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
    /* Smooth zoom */
}

.team-avatar-box {
    width: 64px;
    height: 64px;
}

.admin-table-logo {
    height: 40px;
    width: auto;
    margin-right: 5px;
}

.color-swatch {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

/* HOVER EFFECT: Zoom logo slightly */
.team-card-label:hover .team-logo-lg {
    transform: scale(1.15);
}



.team-card-label:hover {
    background-color: var(--bs-tertiary-bg);
    border-color: var(--bs-secondary-border-subtle);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
}

/* ACTIVE STATE (Selected) */
.btn-check:checked+.team-card-label {
    border-color: #0d6efd;
    background-color: #f0f7ff;
    color: #0d6efd;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    /* Blue glow shadow */
    transform: translateY(-2px);
    /* Physical lift */
}

[data-bs-theme="dark"] .btn-check:checked+.team-card-label {
    background-color: rgba(13, 110, 253, 0.2);
    border-color: #0d6efd;
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    /* Stronger glow in dark mode */
}

/* Playoff Highlight */
.card.playoff-highlight {
    border: 2px solid #ffc107 !important;
}

/* Submit Picks Container - Removed redundant sticky definition to resolve conflicts with floating version */

/* VS Circle (Keep existing) */
.vs-circle {
    width: 40px;
    height: 40px;
    background-color: var(--bs-tertiary-bg);
    border: 2px solid var(--bs-border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--bs-secondary-color);
    z-index: 2;
    position: relative;
}




/* --- NEW: Sticky Progress Bar Styles --- */
.sticky-progress {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    z-index: 1010;
    /* Below the header (1020) but above content */

    /* Glassmorphism — matches .sticky-top .navbar */
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    top: 0;
    /* Default, will be updated by JS */

    /* Break out of .container to span full viewport width */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* --- Utility Overrides --- */
/* Selection page: remove main top-padding so progress bar is flush to header */
body.selection-page main {
    padding-top: 0 !important;
}

/* Hide Back-to-Top on Selection Page (handled by template logic or specific class if needed) */
body.selection-page #btn-back-to-top {
    display: none !important;
}

/* Adjust Floating Submit Button on Mobile to clear new nav */
@media (max-width: 991.98px) {
    .submit-picks-container {
        bottom: 80px !important;
    }
}

/* --- Week Grid Table Utilities --- */
.col-team {
    min-width: 164px;
}

.col-score {
    min-width: 50px;
}

.col-team-full {
    min-width: 214px;
}

.col-pick {
    min-width: 150px;
}

.col-tiebreaker {
    min-width: 120px;
}

.grid-logo,
.grid-logo-pick {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    margin-right: 6px;
}

.grid-logo-pick {
    margin-right: 8px;
}

/* Force Logo Visibility Toggling to prevent both showing */
.logo-dark {
    display: none !important;
}

.logo-light {
    display: inline-block !important;
    /* Changed to inline-block for images */
}

[data-bs-theme="dark"] .logo-dark {
    display: inline-block !important;
}

[data-bs-theme="dark"] .logo-light {
    display: none !important;
}


/* --- Week Results / Sticky Table Styles --- */
/* 1. Force separate borders for sticky stacking context */
.table-sticky-wrapper {
    border-collapse: separate !important;
    border-spacing: 0;
    border: none !important;
}

/* 2. Sticky Column Configuration */
.th-sticky {
    position: -webkit-sticky;
    /* iOS Safari requirement */
    position: sticky;
    left: 0;
    z-index: 100 !important;

    /* CRITICAL FIX: Hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    /* Use shadow for edge definition only */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);

    /* Ensure background paints properly */
    background-clip: padding-box;

    /* Vertical Borders Removed */
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--bs-border-color);

    /* Sizing */
    min-width: 140px;
    white-space: nowrap;
}

/* 3. Explicit Background Colors */

/* DEFAULT / LIGHT MODE: Force White Background */
.th-sticky {
    background-color: var(--bs-body-bg) !important;
    color: var(--bs-body-color);
}

/* DARK MODE: Force Dark Background */
[data-bs-theme="dark"] .th-sticky {
    background-color: var(--bs-body-bg) !important;
    /* Bootstrap Dark Body BG */
    color: #ffffff;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--bs-border-color);
}

/* 4. General Table Fixes - Global Vertical Border Removal */
.table th,
.table td {
    border-left: none !important;
    border-right: none !important;
}

.table-sticky-wrapper td,
.table-sticky-wrapper th {
    border-bottom: 1px solid var(--bs-border-color);
}

/* Live Pulse Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.progress-bar {
    transition: width 0.6s ease;
}

/* --- Auto-Added Utility Classes --- */
.scoreboard-logo {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    margin-right: 8px;
}

.list-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
    margin-right: 8px;
    /* Standardize margin */
}

/* --- What If Tab Styles --- */
.scenario-list-container {
    max-height: 310px;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .scenario-list-container {
        max-height: 80vh;
    }
}

.what-if-odds {
    font-size: 0.7em;
}

/* --- Week Results Navigation --- */
.nav-circle-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- Scoreboard Card --- */
.possession-indicator {
    font-size: 0.5rem;
    vertical-align: middle;
}

/* --- Global Table Border Cleanup --- */
.table thead th {
    border-bottom-width: 2px;
}

/* Highlighted row for current user in tables - Subtle Selection Style (Gold) */
.table tr.table-warning td {
    background-color: rgba(255, 193, 7, 0.15) !important;
    color: inherit !important;
    font-weight: 800;
}

/* Leaderboard Card Styles */
.leaderboard-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-bs-theme="dark"] .leaderboard-item {
    background: var(--bs-body-bg);
    border-color: var(--bs-border-color);
}

.leaderboard-item.user-highlight {
    border: 2px solid var(--bs-warning);
    background: rgba(245, 158, 11, 0.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

[data-bs-theme="dark"] .leaderboard-item.user-highlight {
    background: rgba(245, 158, 11, 0.1);
}

.rank-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #475569;
}

[data-bs-theme="dark"] .rank-badge {
    background: #334155;
    color: #94a3b8;
}

.rank-1 .rank-badge {
    background: #fef3c7;
    color: #92400e;
}

.rank-2 .rank-badge {
    background: #f1f5f9;
    color: #475569;
}

.rank-3 .rank-badge {
    background: #ffedd5;
    color: #9a3412;
}

[data-bs-theme="dark"] .rank-1 .rank-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

[data-bs-theme="dark"] .rank-2 .rank-badge {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

[data-bs-theme="dark"] .rank-3 .rank-badge {
    background: rgba(154, 52, 18, 0.2);
    color: #fb923c;
}

.player-info {
    flex-grow: 1;
    min-width: 0;
}

.player-name {
    font-weight: 600;
    font-family: var(--bs-body-font-family);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-highlight .player-name {
    font-weight: 800;
}

.player-stats {
    text-align: right;
    margin-left: 1rem;
    flex-shrink: 0;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    font-weight: 600;
}

[data-bs-theme="dark"] .stat-label {
    color: #94a3b8;
}

/* Remove vertical borders in dark mode (redundant now but keeping for th-sticky specific overrides) */
[data-bs-theme="dark"] .table th,
[data-bs-theme="dark"] .table td,
[data-bs-theme="dark"] .th-sticky {
    border-left: none !important;
    border-right: none !important;
}

[data-bs-theme="dark"] .table tr.table-warning td {
    background-color: rgba(255, 193, 7, 0.2) !important;
    color: #fff !important;
}

/* ================================================
   Base Layout Utilities (extracted from inline styles)
   ================================================ */

/* Development environment warning banner */
.dev-banner {
    background-color: var(--bs-warning);
    color: #000;
    text-align: center;
    padding: 5px;
    font-weight: bold;
}

/* Back-to-top floating action button (position/display set inline for JS compat) */
#btn-back-to-top {
    z-index: 1030;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
}

/* Lift back-to-top above mobile bottom nav */
@media (max-width: 991.98px) {
    #btn-back-to-top {
        bottom: 95px !important;
    }
}

/* Full-screen loading spinner overlay */
.loading-overlay {
    z-index: 2000;
}

.loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Spacer to prevent content from hiding behind mobile bottom nav */
.mobile-nav-spacer {
    height: 80px;
}

/* --- What If Animations --- */
@keyframes pulse-green {
    0% { background-color: rgba(16, 185, 129, 0); }
    30% { background-color: rgba(16, 185, 129, 0.2); }
    100% { background-color: rgba(16, 185, 129, 0); }
}

@keyframes pulse-red {
    0% { background-color: rgba(220, 53, 69, 0); }
    30% { background-color: rgba(220, 53, 69, 0.2); }
    100% { background-color: rgba(220, 53, 69, 0); }
}

.changed-up {
    animation: pulse-green 1.5s ease-out;
}

.changed-down {
    animation: pulse-red 1.5s ease-out;
}

/* Sticky Sidebar for Split-Pane layouts */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
}

/* Management sidebar utilities */
.sidebar-avatar { width: 60px; height: 60px; }
.trophy-list-scroll { max-height: 250px; overflow-y: auto; }
.trophy-label-sm { font-size: 0.75rem; }

/* Management table utilities */
.search-input-container { max-width: 250px; }
.table-scroll-container { max-height: 70vh; overflow-y: auto; }
.table-sticky-header { z-index: 5; }

.cursor-pointer { cursor: pointer; }

/* HTMX Loading Indicator */
.htmx-indicator {
    display: none !important;
}
.htmx-request .htmx-indicator {
    display: inline-block !important;
}
.htmx-request.htmx-indicator {
    display: inline-block !important;
}

/* Utility classes — migrated from inline styles (F-049) */
.min-vh-75 { min-height: 75vh; }
.min-vh-70 { min-height: 70vh; }
.min-vh-60 { min-height: 60vh; }
.max-w-800 { max-width: 800px; }
.max-w-200 { max-width: 200px; }
.max-w-150 { max-width: 150px; }
.min-w-120 { min-width: 120px; }
.fs-hero { font-size: 4rem; }
.fs-09em { font-size: 0.9em; }
.fs-08rem { font-size: 0.8rem; line-height: 1.2; }
.fs-075rem { font-size: 0.75rem; }
.fs-07em { font-size: 0.7em; }
.fs-07rem { font-size: 0.7rem; }
.h-10px { height: 10px; }
.mb-2px { margin-bottom: 2px; }
.z-10 { z-index: 10; }
.z-toast { z-index: 10000; }
.floating-counter { z-index: 1050; }
.btn-back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
}
.offline-card {
    max-width: 500px;
    width: 100%;
}

/* Left border that only appears at the sm breakpoint and up (profile stat cards) */
@media (min-width: 576px) {
    .border-sm-start {
        border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    }
}
.trophy-award-header {
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
    font-weight: 600;
}
@media (max-width: 991.98px) {
    #floating-counter-container {
        bottom: 80px !important;
    }
}

/* Offline page */
.offline-bg {
    background: linear-gradient(135deg, var(--bs-body-bg) 50%, rgba(var(--bs-primary-rgb), 0.15) 100%);
    background-attachment: fixed;
}

.offline-icon {
    font-size: 6rem;
    color: var(--bs-primary);
    filter: drop-shadow(0 4px 6px rgba(var(--bs-primary-rgb), 0.3));
}