/* Newsletter Section Above Footer */
.newsletter-section-premium {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.newsletter-card-premium {
    background: linear-gradient(135deg, rgb(var(--primary_color)) 0%, #000 150%);
    border-radius: 30px;
    padding: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(var(--primary_color), 0.15);
}

.newsletter-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-card-premium h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.newsletter-card-premium p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 0;
}

.newsletter-card-premium .input-group-premium {
    background: #fff;
    border-radius: 15px;
    padding: 8px;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-card-premium .input-group-premium input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    flex-grow: 1;
    font-size: 1rem;
    color: #000;
    outline: none;
}

.newsletter-card-premium .input-group-premium button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-card-premium .input-group-premium button:hover {
    transform: scale(1.05);
    background: #333;
}

/* Enhanced Premium Footer */
.footer-redesign {
    background-color: rgb(var(--footer_background_color));
    color: rgb(var(--footer_text_color));
    padding-top: 100px;
    padding-bottom: 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgb(var(--footer_border_color));
    position: relative;
}

.footer-redesign .footer-brand {
    max-width: 350px;
}

.footer-redesign .footer-logo {
    margin-bottom: 30px;
    display: inline-block;
}

.footer-redesign .footer-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgb(var(--footer_text_color));
    opacity: 0.8;
}

.footer-redesign .footer-title {
    color: rgb(var(--footer_heading_color));
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
    text-decoration: none;
}

.footer-redesign .footer-link {
    margin-bottom: 15px;
}

.footer-redesign .footer-link a {
    color: rgb(var(--footer_text_color));
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-redesign .footer-link a:hover {
    color: rgb(var(--primary_color));
    opacity: 1;
    transform: translateX(8px);
}

.footer-redesign .footer-link a i {
    font-size: 0.8rem;
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-redesign .footer-link a:hover i {
    opacity: 1;
}

/* Socials Modernized */
.footer-redesign .socials {
    display: flex;
    gap: 15px;
}

.footer-redesign .social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(var(--primary_color), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--footer_heading_color));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(var(--primary_color), 0.2);
}

.footer-redesign .social-btn:hover {
    background: rgb(var(--primary_color));
    color: #000;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 15px 30px rgba(var(--primary_color), 0.4);
}

/* Footer Bottom Wide */
.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgb(var(--footer_border_color));
}

.footer-bottom .copyright {
    font-size: 0.95rem;
    color: rgb(var(--footer_text_color));
    opacity: 0.6;
}

.footer-bottom .footer-legal-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom .footer-legal-links a {
    color: rgb(var(--footer_text_color));
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-bottom .footer-legal-links a:hover {
    opacity: 1;
}

.footer-bottom .payment-methods img {
    height: 30px;
    filter: grayscale(1) invert(1) brightness(2);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-bottom .payment-methods img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 991px) {
    .newsletter-card-premium {
        padding: 40px;
        text-align: center;
    }

    .newsletter-card-premium .row {
        flex-direction: column;
        gap: 30px;
    }
}

/* ============================================
   PREMIUM HEADER / NAVBAR REDESIGN
   Corporate, Minimalist, Professional
   ============================================ */

/* Base Header */
.nav-bar.nav-bar-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--navbar_background_color), 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.nav-bar.nav-bar-bg.scrolled {
    background: rgba(var(--navbar_background_color), 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.03);
}

.nav-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 30px;
}

/* Logo */
.nav-bar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-bar .logo img {
    height: 38px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-bar .logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-bar .logo:active img {
    transform: scale(0.98);
}

/* Navigation Links */
.nav-bar .nav-bar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-bar .link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.925rem;
    letter-spacing: 0.01em;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar .link .link-text {
    position: relative;
}

.nav-bar .link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0);
    transition: background 0.25s ease;
}

.nav-bar .link:hover {
    color: #fff;
}

.nav-bar .link:hover::before {
    background: rgba(255, 255, 255, 0.06);
}

.nav-bar .link:active::before {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.97);
}

/* Link Underline Effect */
.nav-bar .link .link-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(var(--primary_color));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar .link:hover .link-text::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Trigger */
.nav-bar .drop-down-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.925rem;
    letter-spacing: 0.01em;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar .drop-down-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-bar .drop-down-btn:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
}

.nav-bar .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.nav-bar .drop-down:hover .dropdown-arrow,
.nav-bar .drop-down.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown Menu */
.nav-bar .drop-down-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: rgba(var(--navbar_background_color), 0.98);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar .drop-down:hover .drop-down-menu,
.nav-bar .drop-down.active .drop-down-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.nav-bar .drop-down-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar .drop-down-item .item-arrow {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    color: rgb(var(--primary_color));
}

.nav-bar .drop-down-item:hover {
    background: rgba(var(--primary_color), 0.1);
    color: #fff;
    transform: translateX(4px);
}

.nav-bar .drop-down-item:hover .item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.nav-bar .drop-down-item:active {
    background: rgba(var(--primary_color), 0.15);
    transform: translateX(4px) scale(0.98);
}

.nav-bar .drop-down-item i:not(.item-arrow) {
    font-size: 1rem;
    opacity: 0.7;
    width: 20px;
    text-align: center;
}

/* Navigation Buttons */
.nav-bar .nav-bar-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Ghost Button */
.nav-btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-btn-ghost:active {
    transform: translateY(0) scale(0.98);
    box-shadow: none;
}

/* Primary Button */
.nav-btn-primary {
    color: rgb(var(--secondary_color));
    background: rgb(var(--primary_color));
    border: none;
    box-shadow: 0 4px 15px rgba(var(--primary_color), 0.3);
}

.nav-btn-primary:hover {
    color: rgb(var(--secondary_color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary_color), 0.4);
    filter: brightness(1.08);
}

.nav-btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(var(--primary_color), 0.3);
}

/* Business Button */
.nav-btn-business {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-btn-business:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-btn-business:active {
    transform: translateY(0) scale(0.98);
}

.nav-btn-external {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: 4px;
    transition: all 0.25s ease;
}

.nav-btn-business:hover .nav-btn-external {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* User Menu */
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.user-menu-btn:active {
    transform: scale(0.98);
}

.user-avatar-wrapper {
    position: relative;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(var(--primary_color), 0.4);
    transition: border-color 0.3s ease;
}

.user-menu-btn:hover .user-avatar {
    border-color: rgb(var(--primary_color));
}

.user-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid rgb(var(--navbar_background_color));
    border-radius: 50%;
}

.user-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.user-chevron {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-menu:hover .user-chevron,
.user-menu.active .user-chevron {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    min-width: 280px;
    right: 0;
    left: auto;
    transform: translateY(8px);
}

.user-menu:hover .user-dropdown,
.user-menu.active .user-dropdown {
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 8px;
}

.user-dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(var(--primary_color), 0.3);
}

.user-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.user-dropdown-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.user-dropdown-email {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.user-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.drop-down-item-danger {
    color: #f87171 !important;
}

.drop-down-item-danger:hover {
    background: rgba(248, 113, 113, 0.1) !important;
    color: #fca5a5 !important;
}

/* Hamburger Menu */
.nav-bar-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-bar-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-bar-menu-btn:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar-menu-btn:hover .hamburger-line {
    background: #fff;
}

.nav-bar-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-bar-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-bar-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Close Button */
.nav-bar-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-bar-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 1199px) {
    .nav-bar-menu-btn {
        display: flex;
    }

    .nav-bar .nav-bar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 380px;
        height: 100vh;
        background: rgba(var(--navbar_background_color), 0.98);
        backdrop-filter: blur(30px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-bar .nav-bar-menu.active {
        right: 0;
    }

    .nav-bar .nav-bar-menu .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-bar .nav-bar-menu.active .overlay {
        opacity: 1;
        visibility: visible;
    }

    .nav-bar .nav-bar-menu-inner {
        position: relative;
        z-index: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px;
        overflow-y: auto;
    }

    .nav-bar .nav-bar-menu-header {
        display: flex;
        margin-bottom: 20px;
    }

    .nav-bar .nav-bar-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-bar .link {
        padding: 14px 16px;
    }

    .nav-bar .drop-down-btn {
        width: 100%;
        padding: 14px 16px;
        justify-content: space-between;
    }

    .nav-bar .drop-down-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin-top: 4px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-bar .drop-down.active .drop-down-menu {
        display: block;
    }

    .nav-bar .nav-bar-buttons {
        flex-direction: column;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 575px) {
    .nav-bar-container {
        min-height: 64px;
    }

    .nav-bar .logo img {
        height: 32px;
    }

    .nav-bar .user-name {
        display: none;
    }

    .nav-bar .user-menu-btn {
        padding: 4px;
        border-radius: 50%;
    }

    .nav-bar .user-avatar {
        width: 38px;
        height: 38px;
    }

    .nav-bar .user-chevron {
        display: none;
    }
}

/* ============================================
   DASHBOARD NAVBAR OVERRIDES
   Preserve original dashboard styling
   ============================================ */

/* Reset nav-bar styles for dashboard-nav */
.dashboard-nav .drop-down-btn {
    display: flex;
    align-items: center;
    padding: 0;
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    transition: none;
}

.dashboard-nav .drop-down-btn:hover {
    color: inherit;
    background: transparent;
}

.dashboard-nav .drop-down-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    transform: none !important;
    min-width: auto;
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
}

.dashboard-nav .drop-down:hover .drop-down-menu,
.dashboard-nav .drop-down.active .drop-down-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
}

.dashboard-nav .drop-down .drop-down-item,
.dashboard-nav .drop-down-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 15px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
}

.dashboard-nav .drop-down .drop-down-item:hover,
.dashboard-nav .drop-down-item:hover {
    background: #f5f5f5 !important;
    color: #333 !important;
    transform: none !important;
}

.dashboard-nav .drop-down .drop-down-item i,
.dashboard-nav .drop-down-item i {
    font-size: 1rem !important;
    opacity: 0.7 !important;
    width: 18px !important;
    text-align: center !important;
    color: #555 !important;
    transform: none !important;
}

.dashboard-nav .drop-down .drop-down-item.text-danger,
.dashboard-nav .drop-down-item.text-danger {
    color: #dc3545 !important;
}

.dashboard-nav .drop-down .drop-down-item.text-danger:hover,
.dashboard-nav .drop-down-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

.dashboard-nav .drop-down .drop-down-item.text-danger i,
.dashboard-nav .drop-down-item.text-danger i {
    color: #dc3545 !important;
}

.dashboard-nav .user-menu .drop-down-menu {
    min-width: 200px;
}

.dashboard-nav .user-menu .user-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-nav .user-menu .user-name {
    display: inline;
    color: inherit;
    font-weight: 500;
    font-size: 0.9rem;
}