/* ==========================================================================
   MARCOS ERON 43555 — GLOBAL MOBILE-FIRST RESPONSIVE STYLES
   ========================================================================== */

:root {
    --me-topbar-height: 60px;
    --me-sidebar-collapsed: 75px;
    --me-sidebar-expanded: 280px;
}

/* Mobile-First Layout Core */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly sizing */
@media (max-width: 767.98px) {
    .btn, .form-control, .form-select {
        min-height: 42px;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE TOPBAR & SIDEBAR (MOBILE DRAWER SYSTEM)
   -------------------------------------------------------------------------- */

/* Desktop defaults (>= 992px) */
@media (min-width: 992px) {
    .orion-topbar {
        position: fixed !important;
        top: 0 !important;
        left: var(--me-sidebar-collapsed) !important;
        right: 0 !important;
        height: var(--me-topbar-height) !important;
    }

    .orion-main-content-wrapper {
        margin-top: var(--me-topbar-height) !important;
        margin-left: var(--me-sidebar-collapsed) !important;
        width: calc(100% - var(--me-sidebar-collapsed)) !important;
        min-height: calc(100vh - var(--me-topbar-height));
    }

    .sidebar-mobile-backdrop {
        display: none !important;
    }
}

/* Mobile & Tablet (< 992px) */
@media (max-width: 991.98px) {
    .orion-topbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: var(--me-topbar-height) !important;
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }

    .orion-main-content-wrapper {
        margin-top: var(--me-topbar-height) !important;
        margin-left: 0 !important;
        width: 100% !important;
        min-height: calc(100vh - var(--me-topbar-height));
        padding: 1rem !important;
    }

    /* Sidebar transforms into off-canvas drawer on mobile */
    .sidebar-container {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 280px !important;
        z-index: 1060 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: none !important;
    }

    .sidebar-container.mobile-open {
        transform: translateX(0) !important;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8) !important;
    }

    /* In mobile drawer mode, text contents are always visible */
    .sidebar-container .sidebar-text-content {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .sidebar-container .collapse {
        display: block !important;
    }

    /* Backdrop overlay when mobile drawer is open */
    .sidebar-mobile-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1055;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .sidebar-mobile-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Table Responsiveness Touch Polish */
.table-responsive {
    -webkit-overflow-scrolling: touch;
    border-radius: 0.75rem;
}

/* ==========================================================================
   MARCOS ERON 43555 — THEME SYSTEM (LIGHT THEME DEFAULT & DARK THEME SUPPORT)
   ========================================================================== */

:root, [data-bs-theme="light"] {
    --me-body-bg: #f8fafc;
    --me-card-bg: #ffffff;
    --me-topbar-bg: #ffffff;
    --me-sidebar-bg: #ffffff;
    --me-border: #e2e8f0;
    --me-border-subtle: #f1f5f9;
    --me-text-primary: #0f172a;
    --me-text-secondary: #64748b;
    --me-text-muted: #94a3b8;
    --me-accent-green: #059669;
    --me-accent-green-bg: rgba(16, 185, 129, 0.1);
    --me-accent-green-border: rgba(16, 185, 129, 0.25);
    --me-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
}

[data-bs-theme="dark"] {
    --me-body-bg: #07130e;
    --me-card-bg: rgba(10, 25, 17, 0.85);
    --me-topbar-bg: #071710;
    --me-sidebar-bg: #071710;
    --me-border: rgba(16, 185, 129, 0.2);
    --me-border-subtle: rgba(255, 255, 255, 0.08);
    --me-text-primary: #f8fafc;
    --me-text-secondary: #94a3b8;
    --me-text-muted: #64748b;
    --me-accent-green: #34d399;
    --me-accent-green-bg: rgba(16, 185, 129, 0.15);
    --me-accent-green-border: rgba(16, 185, 129, 0.35);
    --me-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* 1. Layout Wrapper Global Override */
[data-bs-theme="light"] .orion-layout-wrapper {
    background-color: #f8fafc !important;
    color: #1e293b !important;
}

/* 2. Topbar Modern Minimalist (Larkon style) */
.orion-topbar {
    height: var(--me-topbar-height, 60px) !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    z-index: 1040;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}
[data-bs-theme="dark"] .orion-topbar {
    background: #0F162A !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.btn-topbar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none !important;
    color: #64748b !important;
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-topbar-icon:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #0f172a !important;
}
[data-bs-theme="dark"] .btn-topbar-icon {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] .btn-topbar-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

.btn-topbar-user {
    background: transparent;
    border: none !important;
    border-radius: 9999px;
    padding: 3px 8px !important;
    transition: all 0.2s ease;
}
.btn-topbar-user:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
[data-bs-theme="dark"] .btn-topbar-user:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.topbar-username {
    color: #1e293b !important;
}
[data-bs-theme="dark"] .topbar-username {
    color: #f1f5f9 !important;
}

[data-bs-theme="light"] .orion-topbar .dropdown-menu {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}
[data-bs-theme="light"] .orion-topbar .dropdown-item {
    color: #334155 !important;
}
[data-bs-theme="light"] .orion-topbar .dropdown-item:hover {
    background-color: #f1f5f9 !important;
    color: #2563eb !important;
}
[data-bs-theme="light"] .orion-topbar .dropdown-divider {
    border-color: #e2e8f0 !important;
}

/* 3. Sidebar Executive Dark Navy (#0F162A) - Always High Contrast & Legible */
.sidebar-container,
[data-bs-theme="light"] .sidebar-container,
[data-bs-theme="dark"] .sidebar-container {
    background-color: #0F162A !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35) !important;
}
.sidebar-container .sidebar-text-content,
.sidebar-container .sidebar-card-item,
.sidebar-container .sidebar-card-item span,
.sidebar-container .sidebar-card-item .sidebar-text-content,
[data-bs-theme="light"] .sidebar-container .sidebar-text-content,
[data-bs-theme="light"] .sidebar-container .sidebar-card-item,
[data-bs-theme="light"] .sidebar-container .sidebar-card-item span,
[data-bs-theme="light"] .sidebar-container .sidebar-card-item .sidebar-text-content,
[data-bs-theme="dark"] .sidebar-container .sidebar-text-content,
[data-bs-theme="dark"] .sidebar-container .sidebar-card-item,
[data-bs-theme="dark"] .sidebar-container .sidebar-card-item span,
[data-bs-theme="dark"] .sidebar-container .sidebar-card-item .sidebar-text-content {
    color: #ffffff !important;
}
.sidebar-container .btn,
[data-bs-theme="light"] .sidebar-container .btn,
[data-bs-theme="dark"] .sidebar-container .btn {
    color: #ffffff !important;
}
.sidebar-container .nav-link,
[data-bs-theme="light"] .sidebar-container .nav-link,
[data-bs-theme="dark"] .sidebar-container .nav-link {
    color: #e2e8f0 !important;
    transition: all 0.2s ease;
}
.sidebar-container .nav-link:hover,
[data-bs-theme="light"] .sidebar-container .nav-link:hover,
[data-bs-theme="dark"] .sidebar-container .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.07) !important;
}
.sidebar-container .active-subitem,
[data-bs-theme="light"] .sidebar-container .active-subitem,
[data-bs-theme="dark"] .sidebar-container .active-subitem {
    background: rgba(56, 189, 248, 0.15) !important;
    color: #38bdf8 !important;
    font-weight: 600 !important;
}
.sidebar-container .sidebar-card-item,
[data-bs-theme="light"] .sidebar-container .sidebar-card-item,
[data-bs-theme="dark"] .sidebar-container .sidebar-card-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}
.sidebar-container .sidebar-card-item:hover,
[data-bs-theme="light"] .sidebar-container .sidebar-card-item:hover,
[data-bs-theme="dark"] .sidebar-container .sidebar-card-item:hover {
    background: rgba(255, 255, 255, 0.09) !important;
    color: #ffffff !important;
}
.sidebar-container .active-card,
[data-bs-theme="light"] .sidebar-container .active-card,
[data-bs-theme="dark"] .sidebar-container .active-card {
    background: rgba(37, 99, 235, 0.22) !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
    border-left: 4px solid #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}
.sidebar-container .border-secondary,
[data-bs-theme="light"] .sidebar-container .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* 4. Cards & Containers in Light Mode */
[data-bs-theme="light"] [style*="rgba(10, 25, 17"],
[data-bs-theme="light"] [style*="rgba(6, 18, 13"],
[data-bs-theme="light"] [style*="rgba(8, 26, 17"] {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    color: #1e293b !important;
}
[data-bs-theme="light"] [style*="background: rgba(0, 0, 0, 0.35)"] {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}
[data-bs-theme="light"] [style*="background: rgba(16, 185, 129, 0.08)"],
[data-bs-theme="light"] [style*="background: rgba(16, 185, 129, 0.05)"] {
    background: #f0fdf4 !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
}

/* 5. Headings & Typography in Light Mode (Scoped only to Main Content, never touching Sidebar) */
[data-bs-theme="light"] .orion-main-content-wrapper h1.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper h2.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper h3.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper h4.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper h5.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper h6.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-14.fw-bold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-15.fw-bold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-16.fw-bold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-17.fw-bold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-22.fw-extrabold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-24.fw-extrabold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-26.fw-black.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .fs-28.fw-bold.text-white,
[data-bs-theme="light"] .orion-main-content-wrapper .text-white:not(.badge):not(.badge *):not(.btn):not(.btn *):not(.badge-gold-destaque),
[data-bs-theme="light"] .page-content .text-white:not(.badge):not(.badge *):not(.btn):not(.btn *) {
    color: #0f172a !important;
}
[data-bs-theme="light"] .orion-main-content-wrapper .text-white-50:not(.badge):not(.btn),
[data-bs-theme="light"] .page-content .text-white-50:not(.badge):not(.btn) {
    color: #64748b !important;
}
[data-bs-theme="light"] .orion-main-content-wrapper .border-secondary,
[data-bs-theme="light"] .page-content .border-secondary {
    border-color: #e2e8f0 !important;
    opacity: 1 !important;
}

/* 6. Tables in Light Mode */
[data-bs-theme="light"] .table-dark {
    background-color: transparent !important;
    color: #1e293b !important;
}
[data-bs-theme="light"] .table-dark > :not(caption) > * > * {
    background-color: #ffffff !important;
    color: #334155 !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
[data-bs-theme="light"] .table-dark thead tr th {
    background-color: #f8fafc !important;
    color: #64748b !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
[data-bs-theme="light"] .table-hover > tbody > tr:hover > * {
    background-color: #f8fafc !important;
}

/* 7. Inputs and Selects in Light Mode */
[data-bs-theme="light"] .orion-layout-wrapper .form-control,
[data-bs-theme="light"] .orion-layout-wrapper .form-select {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
[data-bs-theme="light"] .orion-layout-wrapper .form-control::placeholder {
    color: #94a3b8 !important;
}
[data-bs-theme="light"] .orion-layout-wrapper .form-control:focus,
[data-bs-theme="light"] .orion-layout-wrapper .form-select:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}

/* 8. Footer in Light Mode */
[data-bs-theme="light"] footer[style*="background: rgba(5, 15, 10"] {
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    color: #64748b !important;
}

/* 9. Scenario Pill Buttons in Light Mode */
[data-bs-theme="light"] .btn-scenario-level {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #475569 !important;
}
[data-bs-theme="light"] .btn-scenario-level:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}
[data-bs-theme="light"] .btn-scenario-level.active {
    background: #059669 !important;
    border-color: #059669 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25) !important;
}

/* 10. Modais in Light Mode */
[data-bs-theme="light"] .modal-content {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
[data-bs-theme="light"] .modal-content .text-white {
    color: #0f172a !important;
}
[data-bs-theme="light"] .modal-content .text-white-50 {
    color: #64748b !important;
}
[data-bs-theme="light"] .modal-content .form-control,
[data-bs-theme="light"] .modal-content .form-select {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
[data-bs-theme="light"] .modal-content .border-secondary {
    border-color: #e2e8f0 !important;
}
[data-bs-theme="light"] .modal-content .btn-close {
    filter: none !important;
}

/* 11. Contrast Adjustments in Light Mode */
[data-bs-theme="light"] .text-emerald-400 {
    color: #059669 !important;
}
[data-bs-theme="light"] a.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06) !important;
    border-color: #cbd5e1 !important;
}

/* ==========================================================================
   LARKON THEME INTEGRATION (Larkon-Flask_v1.0 Design Tokens)
   ========================================================================== */

/* 1. Larkon Soft Background Utilities */
.bg-soft-primary {
    background-color: rgba(59, 130, 246, 0.14) !important;
    color: #2563eb !important;
}
.bg-soft-success {
    background-color: rgba(16, 185, 129, 0.14) !important;
    color: #059669 !important;
}
.bg-soft-warning {
    background-color: rgba(245, 158, 11, 0.14) !important;
    color: #d97706 !important;
}
.bg-soft-info {
    background-color: rgba(6, 182, 212, 0.14) !important;
    color: #0891b2 !important;
}
.bg-soft-danger {
    background-color: rgba(239, 68, 68, 0.14) !important;
    color: #dc2626 !important;
}
.bg-soft-purple {
    background-color: rgba(139, 92, 246, 0.14) !important;
    color: #7c3aed !important;
}
.bg-soft-secondary {
    background-color: rgba(100, 116, 139, 0.14) !important;
    color: #475569 !important;
}

[data-bs-theme="dark"] .bg-soft-primary {
    background-color: rgba(59, 130, 246, 0.22) !important;
    color: #60a5fa !important;
}
[data-bs-theme="dark"] .bg-soft-success {
    background-color: rgba(16, 185, 129, 0.22) !important;
    color: #34d399 !important;
}
[data-bs-theme="dark"] .bg-soft-warning {
    background-color: rgba(245, 158, 11, 0.22) !important;
    color: #fbbf24 !important;
}
[data-bs-theme="dark"] .bg-soft-info {
    background-color: rgba(6, 182, 212, 0.22) !important;
    color: #22d3ee !important;
}
[data-bs-theme="dark"] .bg-soft-danger {
    background-color: rgba(239, 68, 68, 0.22) !important;
    color: #f87171 !important;
}
[data-bs-theme="dark"] .bg-soft-purple {
    background-color: rgba(139, 92, 246, 0.22) !important;
    color: #a78bfa !important;
}

/* 2. Larkon Soft Badges */
.badge-soft-primary {
    color: #2563eb !important;
    background-color: rgba(59, 130, 246, 0.14) !important;
    border: 1px solid rgba(59, 130, 246, 0.25) !important;
}
.badge-soft-success {
    color: #059669 !important;
    background-color: rgba(16, 185, 129, 0.14) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
}
.badge-soft-warning {
    color: #d97706 !important;
    background-color: rgba(245, 158, 11, 0.14) !important;
    border: 1px solid rgba(245, 158, 11, 0.25) !important;
}
.badge-soft-info {
    color: #0891b2 !important;
    background-color: rgba(6, 182, 212, 0.14) !important;
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
}
.badge-soft-danger {
    color: #dc2626 !important;
    background-color: rgba(239, 68, 68, 0.14) !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
}
.badge-soft-purple {
    color: #7c3aed !important;
    background-color: rgba(139, 92, 246, 0.14) !important;
    border: 1px solid rgba(139, 92, 246, 0.25) !important;
}

[data-bs-theme="dark"] .badge-soft-primary { color: #60a5fa !important; background-color: rgba(59, 130, 246, 0.22) !important; }
[data-bs-theme="dark"] .badge-soft-success { color: #34d399 !important; background-color: rgba(16, 185, 129, 0.22) !important; }
[data-bs-theme="dark"] .badge-soft-warning { color: #fbbf24 !important; background-color: rgba(245, 158, 11, 0.22) !important; }
[data-bs-theme="dark"] .badge-soft-info { color: #22d3ee !important; background-color: rgba(6, 182, 212, 0.22) !important; }
[data-bs-theme="dark"] .badge-soft-danger { color: #f87171 !important; background-color: rgba(239, 68, 68, 0.22) !important; }

/* 3. Larkon Soft Buttons */
.btn-soft-primary {
    background-color: rgba(59, 130, 246, 0.12) !important;
    color: #2563eb !important;
    border: 1px solid transparent !important;
}
.btn-soft-primary:hover {
    background-color: #2563eb !important;
    color: #ffffff !important;
}
.btn-soft-success {
    background-color: rgba(16, 185, 129, 0.12) !important;
    color: #059669 !important;
    border: 1px solid transparent !important;
}
.btn-soft-success:hover {
    background-color: #059669 !important;
    color: #ffffff !important;
}
.btn-soft-secondary {
    background-color: rgba(100, 116, 139, 0.1) !important;
    color: #475569 !important;
    border: 1px solid rgba(100, 116, 139, 0.2) !important;
}
.btn-soft-secondary:hover, .btn-soft-secondary.active {
    background-color: #059669 !important;
    color: #ffffff !important;
    border-color: #059669 !important;
}

/* 4. Larkon Avatars with Iconify */
.avatar-md {
    height: 3.5rem;
    width: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.avatar-sm {
    height: 2.75rem;
    width: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.avatar-title {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    background-color: transparent !important;
}

/* 5. Minimalist KPI & Shortcut Cards (Executive Larkon-style) */
.kpi-card-minimal {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    transition: all 0.25s ease !important;
}
.kpi-card-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}
[data-bs-theme="dark"] .kpi-card-minimal {
    background: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-bs-theme="dark"] .kpi-card-minimal:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.kpi-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Minimalist Horizontal Shortcut Cards */
.shortcut-card-minimal {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    transition: all 0.2s ease-in-out !important;
    cursor: pointer;
    text-decoration: none !important;
}
.shortcut-card-minimal:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}
.shortcut-card-minimal:hover .shortcut-arrow {
    transform: translateX(4px);
    color: var(--bs-primary) !important;
}
[data-bs-theme="dark"] .shortcut-card-minimal {
    background: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
[data-bs-theme="dark"] .shortcut-card-minimal:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.shortcut-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.shortcut-arrow {
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Letter Spacing Utility */
.ls-05 {
    letter-spacing: 0.5px;
}

/* 6. Larkon Decorative Watermark Widget Icon */
.widget-icon {
    font-size: 5rem;
    position: absolute;
    right: -15px;
    bottom: -15px;
    opacity: 0.08;
    pointer-events: none;
    transition: all 0.3s ease;
}
.card:hover .widget-icon {
    opacity: 0.16;
    transform: scale(1.08);
}

