.sidebar {
    width: 210px;
    height: 100vh;
    box-sizing: border-box;
    background-color: #2c3e50;
    position: fixed;
    top: 0;
    left: 0;
    padding: 14px 0 14px 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.user-session-actions {
    display: flex;
    align-items: stretch;
    gap: 6px;
}

.user-session-actions #userMenuAction {
    flex: 9;
    justify-content: center;
}

.user-theme-toggle {
    flex: 1;
    min-width: 36px;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.user-theme-toggle i {
    font-size: 16px;
}

/* Add this for the active state */
.sidebar.active {
    transform: translateX(0);
    box-shadow: 5px 0 25px rgba(0,0,0,0.3);
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.sidebar .logo-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 14px 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    flex-wrap: wrap;
    min-height: 50px;
}

.sidebar .logo-details a {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.sidebar .logo-details a i {
    font-size: 20px;
    color: white;
    min-width: 20px;
}

.sidebar .logo_name {
    color: white;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: calc(100% - 30px);
    flex: 1;
    min-width: 0;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sidebar ul li {
    padding: 0;
    margin: 0;
}

.sidebar ul li > a {
    text-decoration: none;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.sidebar ul li > a:hover,
.sidebar ul li.clicked > a {
    background-color: rgba(52, 73, 94, 0.8);
    border-left-color: #3498db;
    padding-left: 11px;
}

.sidebar ul li > a i.bx:first-child {
    margin-right: 10px;
    font-size: 16px;
    min-width: 18px;
    text-align: center;
}

/* Dropdown specific styles */
.sidebar ul ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0;
}

.sidebar ul ul li {
    padding: 0;
    margin: 0;
}

.sidebar ul ul li a {
    padding: 8px 14px 8px 36px;
    font-size: 12px;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.sidebar ul ul li a:hover {
    background-color: rgba(52, 73, 94, 0.6);
    color: #ecf0f1;
    border-left-color: #2ecc71;
    padding-left: 33px;
}

.sidebar ul ul li a i {
    margin-right: 8px;
    font-size: 14px;
    min-width: 14px;
    text-align: center;
}

#d-arrow {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
    min-width: 14px;
}

.sidebar li.clicked #d-arrow {
    transform: rotate(90deg);
}

.clicked ul {
    max-height: 500px;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
}

.demo-sidebar-cta {
    margin: 8px 12px 10px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-sidebar-cta p {
    margin: 0 0 8px;
    color: #ecf0f1;
    font-size: 11px;
    line-height: 1.35;
}

.demo-sidebar-cta a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    background: rgba(52, 152, 219, 0.9);
    padding: 6px 8px;
    border-radius: 6px;
}

.demo-sidebar-cta a:hover {
    background: rgba(52, 152, 219, 1);
}

.demo-sidebar-actions {
    display: flex;
    gap: 6px;
}

.demo-sidebar-actions a {
    flex: 1;
    text-align: center;
}

.demo-sidebar-actions .demo-exit-link {
    background: rgba(231, 76, 60, 0.9);
}

.demo-sidebar-actions .demo-exit-link:hover {
    background: rgba(231, 76, 60, 1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #ecf0f1;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.user-avatar-initials {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.user-avatar-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
    z-index: 2;
}

.user-info {
    flex: 1;
}

.user-name {
    color: #ecf0f1;
    font-size: 12px;
    font-weight: 600;
}

.user-role {
    color: rgba(236, 240, 241, 0.75);
    font-size: 10px;
}

.user-menu {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 55px;
    background: #ffffff;
    color: #1f2933;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 1200;
}

.user-menu-item {
    width: 100%;
    border: 1px solid #d9e2ec;
    background: #f8fbff;
    color: #1f2933;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 12px;
}

.user-menu-item.is-logout {
    color: #e74c3c;
}

.user-menu-item:hover {
    background: #eef6ff;
    border-color: #93c5fd;
}

.language-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.user-menu-item.active-language {
    background: rgba(52, 152, 219, 0.18);
    color: #1f2933;
    border-color: #60a5fa;
}

.user-session-actions #userMenuAction {
    background: #fff5f5;
    border-color: #fecaca;
}

.user-session-actions #userMenuAction:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.user-theme-toggle {
    background: #f8fbff;
    border-color: #bfdbfe;
}

.user-theme-toggle:hover {
    background: #eef6ff;
    border-color: #93c5fd;
}

html[data-theme='dark'] .sidebar {
    background-color: #111827;
}

html[data-theme='dark'] .sidebar ul li > a {
    color: #dbeafe;
}

html[data-theme='dark'] .sidebar ul li > a:hover,
html[data-theme='dark'] .sidebar ul li.clicked > a {
    background-color: rgba(31, 41, 55, 0.92);
    border-left-color: #60a5fa;
}

html[data-theme='dark'] .sidebar ul ul {
    background-color: rgba(2, 6, 23, 0.42);
}

html[data-theme='dark'] .sidebar ul ul li a {
    color: #cbd5e1;
}

html[data-theme='dark'] .sidebar ul ul li a:hover {
    background-color: rgba(30, 41, 59, 0.95);
    color: #f8fafc;
    border-left-color: #34d399;
}

html[data-theme='dark'] .user-menu {
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.26);
}

html[data-theme='dark'] .user-menu-item {
    color: #e2e8f0;
    border-color: #334155;
    background: #111827;
}

html[data-theme='dark'] .user-menu-item:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

html[data-theme='dark'] .user-menu-item.active-language {
    background: rgba(59, 130, 246, 0.35);
    color: #f8fafc;
    border-color: #60a5fa;
}

html[data-theme='dark'] .user-menu-item.is-logout {
    color: #fca5a5;
}

html[data-theme='dark'] .user-session-actions #userMenuAction {
    background: rgba(127, 29, 29, 0.25);
    border-color: rgba(248, 113, 113, 0.4);
}

html[data-theme='dark'] .user-session-actions #userMenuAction:hover {
    background: rgba(127, 29, 29, 0.38);
    border-color: rgba(248, 113, 113, 0.55);
}

html[data-theme='dark'] .user-theme-toggle {
    background: #111827;
    border-color: #334155;
}

html[data-theme='dark'] .mobile-dropdown {
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.26);
}

html[data-theme='dark'] .mobile-user-name {
    color: #e2e8f0;
}

html[data-theme='dark'] .mobile-user-role {
    color: #94a3b8;
}

html[data-theme='dark'] .mobile-ribbon {
    background: #0b1220;
    color: #e2e8f0;
    border-bottom-color: rgba(148, 163, 184, 0.26);
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
}

html[data-theme='dark'] .mobile-user {
    background: rgba(148, 163, 184, 0.16);
    color: #e2e8f0;
}

html[data-theme='dark'] .mobile-user:hover,
html[data-theme='dark'] .mobile-user:focus-visible {
    background: rgba(148, 163, 184, 0.28);
}

html[data-theme='dark'] .mobile-language-btn {
    background: #111827;
    color: #cbd5e1;
    border: 1px solid #334155;
}

html[data-theme='dark'] .mobile-language-btn.active {
    background: rgba(59, 130, 246, 0.35);
    color: #f8fafc;
    border-color: #60a5fa;
}

html[data-theme='dark'] .mobile-session-actions .mobile-logout-btn {
    background: rgba(127, 29, 29, 0.25);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

html[data-theme='dark'] .mobile-session-actions .mobile-logout-btn:hover,
html[data-theme='dark'] .mobile-session-actions .mobile-logout-btn:focus-visible {
    background: rgba(127, 29, 29, 0.38);
    border-color: rgba(248, 113, 113, 0.55);
}

html[data-theme='dark'] .mobile-session-actions .mobile-login-btn {
    background: rgba(30, 58, 138, 0.32);
    color: #bfdbfe;
    border: 1px solid rgba(96, 165, 250, 0.45);
}

html[data-theme='dark'] .mobile-theme-btn {
    background: #111827;
    color: #e2e8f0;
    border-color: #334155;
}

html[data-theme='dark'] .mobile-theme-btn:hover,
html[data-theme='dark'] .mobile-theme-btn:focus-visible {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}


/* Main dropdown items */
.sidebar .dropdown > a {
    font-size: 13px;
    font-weight: 600;
}

/* Ensure overlay is properly styled */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Close button should always be visible in mobile */
.sidebar-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mobile-ribbon .menu-toggle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    padding: 6px 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    background: transparent;
    color: inherit;
    z-index: 1003;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.sidebar-open .mobile-ribbon .menu-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mobile ribbon should be above overlay but below sidebar */
.mobile-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #2c3e50;
    color: #ecf0f1;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    z-index: 1002;
    transform: translateY(0);
    transition: transform 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.mobile-ribbon.mobile-ribbon-hidden { transform: translateY(-110%); }

/* Keep company ribbon visible while scrolling on order view page. */
.view-order-page .mobile-ribbon.mobile-ribbon-hidden { transform: translateY(0); }

.mobile-title { font-weight: 700; font-size: 1rem; letter-spacing: 0.3px; }

.mobile-actions { position: relative; display: flex; align-items: center; gap: 8px; }

.mobile-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.16);
    color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-user-trigger-initials {
    font-size: 12px;
    font-weight: 700;
    color: inherit;
    text-transform: uppercase;
    z-index: 1;
}

.mobile-user-trigger-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
    z-index: 2;
}

.mobile-user:hover,
.mobile-user:focus-visible { background: rgba(255, 255, 255, 0.28); outline: none; }

.mobile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    color: #1f2933;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1500;
}

.mobile-dropdown.visible { opacity: 1; transform: translateY(0); }

.mobile-dropdown a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 10px 12px;
    border-radius: 8px;
}

.mobile-dropdown a:hover,
.mobile-dropdown a:focus-visible { background: rgba(52, 152, 219, 0.12); outline: none; }

.mobile-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 10px;
}

.mobile-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.08);
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.mobile-user-initials {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.mobile-user-avatar-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
    z-index: 2;
}

.mobile-user-name {
    font-weight: 600;
    color: #1f2933;
}

.mobile-user-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 6px 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-user-role {
    font-size: 12px;
    color: #5f6b7a;
    font-weight: 600;
    width: 100%;
}

.mobile-user-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    flex: 0 0 auto;
}

.mobile-language-actions {
    display: flex;
    gap: 6px;
    width: 100%;
}

.mobile-language-btn {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #1f2933;
    background: rgba(52, 152, 219, 0.12);
    cursor: pointer;
}

.mobile-language-btn.active {
    background: rgba(52, 152, 219, 0.26);
}

.mobile-session-actions {
    display: flex;
    align-items: stretch;
    gap: 6px;
    width: 100%;
}

.mobile-session-actions .mobile-logout-btn,
.mobile-session-actions .mobile-login-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-theme-btn {
    min-width: 38px;
    width: 38px;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    background: #f8fbff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-theme-btn i {
    font-size: 16px;
}

.mobile-theme-btn:hover,
.mobile-theme-btn:focus-visible {
    background: #eef6ff;
    border-color: #93c5fd;
    outline: none;
}

.mobile-logout-btn,
.mobile-login-btn {
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
}

.mobile-logout-btn {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
}

.mobile-logout-btn:hover,
.mobile-logout-btn:focus-visible {
    background: rgba(231, 76, 60, 0.18);
}

.mobile-login-btn {
    background: rgba(52, 152, 219, 0.12);
    color: #3498db;
}

.mobile-login-btn:hover,
.mobile-login-btn:focus-visible {
    background: rgba(52, 152, 219, 0.18);
}

/* Responsive styles - Fix for mobile view */
@media (max-width: 1024px) {
    body {
        padding-top: 56px;
    }

    body.sidebar-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        padding-top: 56px;
    }

    .sidebar {
        transform: translateX(-100%);
        margin-top: 0;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    /* Show close button when sidebar is active */
    .sidebar.active .sidebar-close {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar.active + .sidebar-overlay {
        display: block;
    }
    
    /* Mobile ribbon should be visible */
    .mobile-ribbon {
        display: flex !important;
    }
    
    /* Only show close (X) when sidebar is open on mobile */
    body.sidebar-open .sidebar .sidebar-close { display: flex; }

    /* Adjust logo for mobile */
    .sidebar .logo_name {
        font-size: 18px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .sidebar {
        width: 100%;
        max-width: 280px;
    }
    
    .sidebar .logo_name {
        font-size: 16px;
    }
    
    .sidebar ul li > a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .sidebar ul ul li a {
        padding: 8px 15px 8px 40px;
        font-size: 13px;
    }
}

/* Company name responsiveness */
@media (max-width: 1200px) {
    .sidebar .logo_name {
        font-size: 18px;
    }
}

/* Add to sidebar.css */
@media (max-width: 1024px) {
    body.sidebar-open .mobile-ribbon {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .mobile-ribbon {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}

/* For very long company names */
.sidebar .logo_name.long-name {
    font-size: 16px;
    line-height: 1.2;
}

.sidebar .logo_name.very-long-name {
    font-size: 14px;
    line-height: 1.1;
}

/* Ensure all icons maintain alignment */
.sidebar i {
    flex-shrink: 0;
}

/* Smooth transitions for dropdowns */
.sidebar li {
    transition: all 0.3s ease;
}

/* Active state for dropdown items */
.sidebar ul ul li a.active {
    background-color: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border-left-color: #3498db;
}

/* Spacing between main menu items */
.sidebar > ul > li {
    margin-bottom: 2px;
}

/* Profile Switcher Styles (if used) */
.profile-switcher {
    position: relative;
    margin: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-switcher:hover {
    background: rgba(255, 255, 255, 0.15);
}

.current-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

.profile-email {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-arrow {
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.current-profile.active .profile-arrow {
    transform: rotate(180deg);
}

.profile-switcher-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2d3748;
    border-radius: 8px;
    margin-top: 5px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.profile-switcher-dropdown.active {
    display: block;
}

.profile-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: left;
}

.profile-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.profile-option i {
    font-size: 1.1rem;
    color: #4299e1;
}

.profile-option-info {
    flex: 1;
    min-width: 0;
}

.profile-option-label {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-option-type {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-info-static {
    margin: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.profile-info-static .profile-email,
.profile-info-static .profile-role {
    color: #fff;
    text-align: center;
}