/* ============================================================
   BTCInvest – Mobile Banking Dashboard Skin
   Inspired by Fidelity Bank mobile app layout
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --dash-primary: #0047ba;
    --dash-primary-dark: #003091;
    --dash-primary-deeper: #001f5c;
    --dash-accent: #2ecc40;
    --dash-accent-dark: #1fa832;
    --dash-card-bg: linear-gradient(135deg, #003da6 0%, #002770 55%, #001a4d 100%);
    --dash-hero-bg: linear-gradient(180deg, #0052d4 0%, #0041b0 40%, #003399 100%);
    --dash-white: #ffffff;
    --dash-light: #f5f6fa;
    --dash-border: #e8eaef;
    --dash-text: #1c2b46;
    --dash-text-light: #8094ae;
    --dash-radius-sm: 8px;
    --dash-radius-md: 14px;
    --dash-radius-lg: 20px;
    --dash-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --dash-shadow-card: 0 8px 32px rgba(0, 20, 80, 0.25);
}

/* ---------- Layout Reset for Dashboard ---------- */
.mobile-dashboard {
    padding-bottom: 80px;
}

/* Hide the default sidebar/header on the dashboard page for mobile feel */
/* On larger screens keep them visible */

/* ---------- HERO (Blue Top Section) ---------- */
.dash-hero {
    background: var(--dash-hero-bg);
    padding: 0 0 20px 0;
    margin: -32px -14px 0;
    position: relative;
    overflow: hidden;
}
.dash-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}
.dash-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}
.dash-hero-inner {
    position: relative;
    z-index: 2;
    padding: 20px 20px 0;
}

/* ---------- Greeting ---------- */
.dash-greeting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.dash-greeting-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dash-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-avatar img,
.dash-avatar .user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.dash-avatar .user-avatar {
    font-size: 18px;
}
.dash-hello-text {
    color: var(--dash-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.dash-notification-bell {
    color: var(--dash-white);
    font-size: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none !important;
}
.dash-notification-bell:hover {
    color: var(--dash-white);
}
.dash-bell-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid var(--dash-primary);
}

/* ---------- Account Card ---------- */
.dash-card-slider {
    padding: 0 2px;
}
.dash-account-card {
    background: var(--dash-card-bg);
    border-radius: var(--dash-radius-lg);
    padding: 22px 22px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--dash-shadow-card);
    min-height: 170px;
}
.dash-account-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* Diagonal stripe decoration */
.dash-card-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.dash-card-stripes::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -20px;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.04) 8px,
        rgba(255, 255, 255, 0.04) 16px
    );
    transform: rotate(0deg);
}
.dash-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.dash-card-type {
    color: var(--dash-white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.dash-card-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--dash-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.dash-card-id {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.08em;
}
.dash-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.dash-card-balance-value {
    color: var(--dash-white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dash-currency-symbol {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.85;
}
.dash-card-balance-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}
.dash-show-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dash-white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.dash-show-btn:hover {
    color: var(--dash-white);
    opacity: 0.85;
}
.dash-show-btn .icon {
    font-size: 16px;
}

/* ---------- Slider Dots ---------- */
.dash-slider-dots {
    display: flex;
    justify-content: center;
    padding: 14px 0 0;
    gap: 6px;
}
.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: inline-block;
    transition: all 0.3s;
}
.dash-dot.active {
    background: var(--dash-white);
    width: 10px;
    height: 10px;
}

/* ---------- WHITE CONTENT AREA ---------- */
.dash-content-area {
    background: var(--dash-white);
    padding: 24px 20px 20px;
    margin: 0 -14px;
    min-height: 50vh;
}

/* ---------- Section ---------- */
.dash-section {
    margin-bottom: 28px;
}
.dash-section-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dash-text);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.dash-section-header .dash-section-title {
    margin-bottom: 0;
}
.dash-section-link {
    font-size: 13px;
    color: var(--dash-primary);
    font-weight: 600;
    text-decoration: none !important;
}
.dash-section-link:hover {
    color: var(--dash-primary-dark);
}

/* ---------- Favorites Grid ---------- */
.dash-favorites-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dash-fav-row {
    display: grid;
    gap: 10px;
}
.dash-fav-row-4 {
    grid-template-columns: repeat(4, 1fr);
}
.dash-fav-row-3 {
    grid-template-columns: repeat(3, 1fr);
}
.dash-fav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dash-white);
    border: 1.5px solid var(--dash-border);
    border-radius: var(--dash-radius-md);
    padding: 18px 6px 14px;
    text-decoration: none !important;
    transition: all 0.22s ease;
    cursor: pointer;
    min-height: 100px;
}
.dash-fav-item:hover {
    border-color: var(--dash-primary);
    background: #f0f5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 186, 0.1);
}
.dash-fav-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.22s ease;
}
.dash-fav-icon svg {
    width: 38px;
    height: 38px;
}

/* Icon color variants */
.dash-fav-icon--blue {
    color: var(--dash-primary);
}
.dash-fav-icon--green {
    color: var(--dash-accent-dark);
}
.dash-fav-icon--teal {
    color: #00b478;
}
.dash-fav-icon--dark {
    color: #364a63;
}

/* Hover color shifts */
.dash-fav-item:hover .dash-fav-icon--blue { color: #003091; }
.dash-fav-item:hover .dash-fav-icon--green { color: #178a28; }
.dash-fav-item:hover .dash-fav-icon--teal { color: #009060; }
.dash-fav-item:hover .dash-fav-icon--dark { color: #1c2b46; }

.dash-fav-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--dash-text);
    text-align: center;
    line-height: 1.25;
}

/* ---------- Summary Cards ---------- */
.dash-summary-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.dash-summary-card {
    background: var(--dash-light);
    border-radius: var(--dash-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dash-summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.dash-summary-deposit .dash-summary-icon {
    background: rgba(0, 71, 186, 0.12);
    color: var(--dash-primary);
}
.dash-summary-withdraw .dash-summary-icon {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}
.dash-summary-label {
    display: block;
    font-size: 11px;
    color: var(--dash-text-light);
    font-weight: 500;
    margin-bottom: 2px;
}
.dash-summary-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dash-text);
}
/* Override nested card styles from Panel::balance */
.dash-summary-value .card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.dash-summary-value .card-inner {
    padding: 0;
}
.dash-summary-value .nk-wgacc-title,
.dash-summary-value .title {
    display: none;
}
.dash-summary-value .number {
    font-size: 14px !important;
}

/* ---------- Features Banner ---------- */
.dash-features-banner {
    background: linear-gradient(135deg, #f0f5ff 0%, #e6edff 100%);
    border-radius: var(--dash-radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--dash-border);
}
.dash-features-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(0, 71, 186, 0.06);
    border-radius: 50%;
}
.dash-features-banner-inner {
    padding: 24px;
    position: relative;
    z-index: 2;
}
.dash-features-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--dash-primary);
    margin-bottom: 10px;
}
.dash-features-brand .icon {
    font-size: 20px;
}
.dash-features-headline {
    font-size: 20px;
    font-weight: 800;
    color: var(--dash-text);
    margin-bottom: 6px;
    line-height: 1.25;
}
.dash-features-sub {
    font-size: 13px;
    color: var(--dash-text-light);
    margin-bottom: 14px;
}
.dash-features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.dash-features-tag {
    background: var(--dash-primary);
    color: var(--dash-white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* ---------- Recent Transactions ---------- */
.dash-transactions-list {
    background: var(--dash-white);
    border: 1.5px solid var(--dash-border);
    border-radius: var(--dash-radius-md);
    overflow: hidden;
}
.dash-transactions-list .nk-odr-item {
    border-bottom: 1px solid var(--dash-border);
    padding: 14px 16px;
}
.dash-transactions-list .nk-odr-item:last-child {
    border-bottom: none;
}

/* ---------- BOTTOM NAVIGATION ---------- */
.dash-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--dash-white);
    border-top: 1px solid var(--dash-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px 0 env(safe-area-inset-bottom, 8px);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}
.dash-bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 8px 2px;
    text-decoration: none !important;
    color: var(--dash-text-light);
    font-size: 10px;
    font-weight: 600;
    transition: color 0.2s;
    gap: 3px;
    min-width: 56px;
}
.dash-bnav-svg {
    width: 22px;
    height: 22px;
}
.dash-bnav-item .icon {
    font-size: 20px;
    line-height: 1;
}
.dash-bnav-item.active {
    color: var(--dash-primary);
}
.dash-bnav-item:hover {
    color: var(--dash-primary);
}
.dash-bnav-center {
    position: relative;
}
.dash-bnav-center-icon {
    background: var(--dash-primary);
    color: var(--dash-white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -18px;
    box-shadow: 0 4px 12px rgba(0,71,186,0.3);
}

/* ---------- Alert Box ---------- */
.dash-alert-box {
    margin-bottom: 16px;
}

/* ---------- Responsive Adjustments ---------- */
@media (min-width: 576px) {
    .dash-hero {
        margin: -32px -28px 0;
    }
    .dash-content-area {
        margin: 0 -28px;
        padding: 28px 28px 20px;
    }
}
@media (min-width: 768px) {
    .dash-hero-inner {
        padding: 28px 32px 0;
    }
    .dash-content-area {
        padding: 32px 32px 20px;
    }
    .dash-account-card {
        min-height: 190px;
        padding: 28px 28px 24px;
    }
    .dash-card-balance-value {
        font-size: 26px;
    }
    .dash-fav-row-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .dash-fav-row-3 {
        grid-template-columns: repeat(4, 1fr);
    }
    .dash-fav-item {
        min-height: 100px;
    }
}
@media (min-width: 992px) {
    .dash-hero {
        border-radius: 0 0 24px 24px;
    }
    .dash-content-area {
        border-radius: 0;
    }
    .dash-bottom-nav {
        display: none;
    }
    .mobile-dashboard {
        padding-bottom: 20px;
    }
}
@media (min-width: 1200px) {
    .dash-card-slider {
        max-width: 520px;
    }
    .dash-features-banner-inner {
        padding: 32px;
    }
}

/* ---------- Animations ---------- */
@keyframes dash-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dash-greeting {
    animation: dash-fadeInUp 0.4s ease both;
}
.dash-account-card {
    animation: dash-fadeInUp 0.5s ease 0.1s both;
}
.dash-section {
    animation: dash-fadeInUp 0.5s ease 0.2s both;
}
.dash-section:nth-child(2) {
    animation-delay: 0.25s;
}
.dash-section:nth-child(3) {
    animation-delay: 0.3s;
}
.dash-section:nth-child(4) {
    animation-delay: 0.35s;
}
.dash-bottom-nav {
    animation: dash-fadeInUp 0.4s ease 0.4s both;
}

/* ============================================================
   INNER PAGE STYLES - Shared across all non-dashboard pages
   ============================================================ */

/* ---------- Inner Page Header (Blue bar) ---------- */
.dash-inner-header {
    background: var(--dash-hero-bg);
    margin: -32px -14px 0;
    padding: 0;
}
.dash-inner-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 12px;
}
.dash-back-btn {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none !important;
    transition: background 0.2s;
    flex-shrink: 0;
}
.dash-back-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.dash-inner-title {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    margin: 0;
    letter-spacing: 0.01em;
}
.dash-inner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-inner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.dash-inner-avatar-initials {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}
.dash-inner-avatar-initials .user-avatar {
    width: 100%;
    height: 100%;
    font-size: 13px;
}

@media (min-width: 576px) {
    .dash-inner-header {
        margin: -32px -28px 0;
    }
}

/* ---------- Dashboard Avatar (fixed) ---------- */
.dash-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.dash-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.dash-avatar-initials .user-avatar {
    width: 100%;
    height: 100%;
    font-size: 16px;
}

/* ---------- Inner Page Nav Tabs ---------- */
.dash-nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    gap: 4px;
    border-bottom: 1.5px solid var(--dash-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.dash-nav-tabs .nav-item {
    flex-shrink: 0;
}
.dash-nav-tabs .nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dash-text-light);
    text-decoration: none !important;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    transition: all 0.2s;
    white-space: nowrap;
}
.dash-nav-tabs .nav-item.active .nav-link,
.dash-nav-tabs .nav-link.active {
    color: var(--dash-primary);
    border-bottom-color: var(--dash-primary);
}
.dash-nav-tabs .nav-link:hover {
    color: var(--dash-primary);
}

/* ---------- Profile Card ---------- */
.dash-profile-card {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 24px;
    background: var(--dash-light);
    border-radius: var(--dash-radius-lg);
}
.dash-profile-avatar-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 3px solid var(--dash-primary);
    background: rgba(0,71,186,0.08);
}
.dash-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.dash-profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--dash-primary);
}
.dash-profile-placeholder .user-avatar {
    width: 100%;
    height: 100%;
    font-size: 24px;
}
.dash-profile-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dash-text);
    margin: 0 0 4px;
}
.dash-profile-email {
    font-size: 13px;
    color: var(--dash-text-light);
    margin: 0 0 10px;
}
.dash-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.dash-badge--success {
    background: rgba(46, 204, 64, 0.12);
    color: #1fa832;
}
.dash-badge--warning {
    background: rgba(255, 165, 0, 0.12);
    color: #c57800;
}

/* ---------- Data List (Profile fields, settings) ---------- */
.dash-list-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dash-text);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--dash-border);
}
.dash-data-list {
    background: var(--dash-white);
    border: 1.5px solid var(--dash-border);
    border-radius: var(--dash-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}
.dash-data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--dash-border);
    cursor: pointer;
    transition: background 0.15s;
    gap: 12px;
}
.dash-data-item:last-child {
    border-bottom: none;
}
.dash-data-item:hover {
    background: var(--dash-light);
}
.dash-data-col {
    flex: 1;
    min-width: 0;
}
.dash-data-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--dash-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.dash-data-value {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dash-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-data-arrow {
    color: var(--dash-text-light);
    flex-shrink: 0;
}

/* ---------- Settings Card Overrides ---------- */
.mobile-dashboard .card.card-bordered {
    border: 1.5px solid var(--dash-border);
    border-radius: var(--dash-radius-md);
    overflow: hidden;
}
.mobile-dashboard .card-inner {
    padding: 16px;
}
.mobile-dashboard .card-inner-group .card-inner {
    border-bottom: 1px solid var(--dash-border);
}
.mobile-dashboard .card-inner-group .card-inner:last-child {
    border-bottom: none;
}

/* ---------- Table Overrides for Inner Pages ---------- */
.mobile-dashboard .table {
    font-size: 13px;
}
.mobile-dashboard .table thead.thead-light th {
    background: var(--dash-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dash-text-light);
    padding: 10px 14px;
}
.mobile-dashboard .table td {
    padding: 12px 14px;
    vertical-align: middle;
}

/* ---------- Block Head Overrides ---------- */
.mobile-dashboard .nk-block-head {
    padding-bottom: 16px;
}
.mobile-dashboard .nk-block-title {
    font-size: 17px;
    font-weight: 700;
}
.mobile-dashboard .nk-block-des p {
    font-size: 13px;
    color: var(--dash-text-light);
}

/* ---------- Transaction List Inner Page ---------- */
.mobile-dashboard .nk-odr-list {
    border: 1.5px solid var(--dash-border);
    border-radius: var(--dash-radius-md);
    overflow: hidden;
}

/* ---------- Form Overrides ---------- */
.mobile-dashboard .form-control {
    border-radius: var(--dash-radius-sm);
    border-color: var(--dash-border);
}
.mobile-dashboard .form-control:focus {
    border-color: var(--dash-primary);
    box-shadow: 0 0 0 3px rgba(0, 71, 186, 0.08);
}
.mobile-dashboard .btn-primary {
    background: var(--dash-primary);
    border-color: var(--dash-primary);
    border-radius: var(--dash-radius-sm);
}
.mobile-dashboard .btn-primary:hover {
    background: var(--dash-primary-dark);
    border-color: var(--dash-primary-dark);
}

/* ---------- NioIcon Notification Bell on Dashboard ---------- */
.dash-notification-bell {
    color: var(--dash-white);
    font-size: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none !important;
}
.dash-notification-bell:hover {
    color: var(--dash-white);
}

/* ---------- Enhanced Favorite Icon Backgrounds ---------- */
.dash-fav-icon {
    border-radius: 14px;
    background: transparent;
}
.dash-fav-icon--blue {
    background: rgba(0, 71, 186, 0.08);
}
.dash-fav-icon--green {
    background: rgba(31, 168, 50, 0.08);
}
.dash-fav-icon--teal {
    background: rgba(0, 180, 120, 0.08);
}
.dash-fav-icon--dark {
    background: rgba(54, 74, 99, 0.08);
}
.dash-fav-item:hover .dash-fav-icon--blue {
    background: rgba(0, 71, 186, 0.14);
}
.dash-fav-item:hover .dash-fav-icon--green {
    background: rgba(31, 168, 50, 0.14);
}
.dash-fav-item:hover .dash-fav-icon--teal {
    background: rgba(0, 180, 120, 0.14);
}
.dash-fav-item:hover .dash-fav-icon--dark {
    background: rgba(54, 74, 99, 0.14);
}
