#userActionsComponent {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



/* Enhanced currency selector styles */
.currency-selector {
    position: relative;
    min-width: 140px;
    z-index: 10;
    border: 1px solid var(--border-color);
    border-radius: 35px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.currency-selector select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: none;
    border-radius: 60px;
    padding: 8px 12px;
    padding-right: 45px;
    margin-left: -25px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-left: 0px;
}

.currency-selector:hover {
    border-color: var(--brand-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.currency-selector:hover select {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.currency-selector select:focus {
    outline: none;
}

.currency-selector:focus-within {
    border-color: var(--brand-accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.currency-selector:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.currency-selector select option {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 10px 12px;
    border: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.currency-selector select option:hover {
    background: var(--bg-light);
}

.currency-selector select option:checked {
    background: var(--brand-accent);
    color: var(--text-primary);
    font-weight: 600;
}

/* Custom dropdown arrow with animation */
.currency-selector::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.7rem;
}

.currency-selector:hover::after {
    color: var(--brand-accent);
    transform: translateY(-50%) scale(1.1);
}

.currency-selector:focus-within::after {
    color: var(--brand-accent);
    transform: translateY(-50%) rotate(180deg);
}

/* Flag styling in options */
.currency-selector select option img {
    width: 16px;
    height: 12px;
    margin-right: 8px;
    border-radius: 2px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hide flags on mobile devices */
@media (max-width: 768px) {
    .currency-selector select option img,
    .currency-select option img {
        display: none !important;
    }
}

/* Loading state for currency selector */
.currency-selector.loading select {
    opacity: 0.7;
    cursor: wait;
}

.currency-selector.loading::after {
    content: '\f110';
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Currency refresh button */
.currency-refresh-btn {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    z-index: 12;
}

.currency-refresh-btn:hover {
    color: var(--brand-accent);
    background: rgba(var(--brand-accent-rgb), 0.1);
}

.currency-refresh-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.currency-refresh-btn i {
    transition: transform 0.3s ease;
}

.currency-refresh-btn:hover i {
    transform: rotate(180deg);
}

/* Success state animation */
.currency-selector.success select {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.currency-selector.success::after {
    content: '\f00c';
    color: #10b981;
}

/* RTL Support for Currency Selector */
[dir="rtl"] .currency-selector select {
    padding: 8px 12px;
    padding-left: 45px;
    padding-right: 12px;
    margin-left: 0;
    margin-right: 0px;
    text-align: right;
}

[dir="rtl"] .currency-selector::after {
    right: auto;
    left: 25px;
}

[dir="rtl"] .currency-selector:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

[dir="rtl"] .currency-refresh-btn {
    right: auto;
    left: 35px;
}

[dir="rtl"] .currency-selector select option img {
    margin-right: 0;
    margin-left: 8px;
}

/* Currency Select Class Styles (for the actual select element) */
.currency-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 35px;
    padding: 8px 12px;
    padding-right: 45px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.currency-select:hover {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: var(--brand-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.currency-select:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.currency-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 10px 12px;
    border: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.currency-select option:hover {
    background: var(--bg-light);
}

.currency-select option:checked {
    background: var(--brand-accent);
    color: var(--text-primary);
    font-weight: 600;
}

.currency-select option img {
    width: 16px;
    height: 12px;
    margin-right: 8px;
    border-radius: 2px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* RTL Support for Currency Select Class */
[dir="rtl"] .currency-select {
    padding: 8px 12px;
    padding-left: 45px;
    padding-right: 12px;
    text-align: right;
}

[dir="rtl"] .currency-select option img {
    margin-right: 0;
    margin-left: 8px;
}

/* Responsive styles for currency selector */
@media (max-width: 768px) {
    .currency-selector {
        min-width: 80px;
    }
    
    .currency-selector select {
        font-size: 0.8rem;
        padding: 6px 10px;
        padding-right: 30px;
        min-height: 34px;
    }
    
    .currency-selector::after {
        right: 6px;
        font-size: 0.65rem;
    }
    
    /* Mobile: Show only currency code (e.g., "SAR" instead of "SAR - Saudi Riyal") */
    .currency-selector select option {
        font-size: 0.8rem;
    }
    
    /* Mobile RTL Support for Currency Selector */
    [dir="rtl"] .currency-selector select {
        padding: 6px 10px;
        padding-left: 30px;
        padding-right: 10px;
        margin-right: -25px;
    }
    
    [dir="rtl"] .currency-selector::after {
        right: auto;
        left: 6px;
        font-size: 0.65rem;
    }
    
    [dir="rtl"] .currency-refresh-btn {
        right: auto;
        left: 25px;
    }
    
    /* Mobile styles for Currency Select Class */
    .currency-select {
        font-size: 0.8rem;
        padding: 6px 10px;
        padding-right: 30px;
        min-height: 34px;
    }
    
    /* Mobile RTL Support for Currency Select Class */
    [dir="rtl"] .currency-select {
        padding: 6px 10px;
        padding-left: 30px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .currency-selector {
        min-width: 60px;
    }
    
    .currency-selector select {
        font-size: 0.75rem;
        padding: 5px 8px;
        padding-right: 25px;
        min-height: 32px;
        margin-left: 0px;
    }
    
    .currency-selector::after {
        right: 4px;
        font-size: 0.6rem;
    }
    
    /* Extra small screens: Show only currency code */
    .currency-selector select option {
        font-size: 0.75rem;
    }
    
    /* Extra small screens RTL Support for Currency Selector */
    [dir="rtl"] .currency-selector select {
        padding: 5px 8px;
        padding-left: 25px;
        padding-right: 8px;
        margin-right: 0px;
    }
    
    [dir="rtl"] .currency-selector::after {
        right: auto;
        left: 4px;
        font-size: 0.6rem;
    }
    
    [dir="rtl"] .currency-refresh-btn {
        right: auto;
        left: 20px;
    }
    
    /* Extra small screens styles for Currency Select Class */
    .currency-select {
        font-size: 0.75rem;
        padding: 5px 8px;
        padding-right: 25px;
        min-height: 32px;
    }
    
    /* Extra small screens RTL Support for Currency Select Class */
    [dir="rtl"] .currency-select {
        padding: 5px 8px;
        padding-left: 25px;
        padding-right: 8px;
    }
}

/* User Menu */
#userActionsComponent .user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* User Action Buttons */
#userActionsComponent .user-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

#userActionsComponent .user-action-btn:hover {
    background: var(--bg-light);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

#userActionsComponent .user-action-btn i {
    font-size: 1.1rem;
}

/* Balance Badge */
#userActionsComponent .balance-badge {
    background: var(--brand-accent);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#userActionsComponent .user-action-btn:hover .balance-badge {
    opacity: 0.9;
}

/* Cart Counter */
#userActionsComponent .cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brand-accent);
    color: var(--text-primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #userActionsComponent {
        gap: 1rem;
    }

    #userActionsComponent .currency-text {
        display: none;
    }

    #userActionsComponent .balance-badge {
        display: none;
    }

    #userActionsComponent .user-action-btn {
        padding: 0.5rem;
    }

    #userActionsComponent .user-action-btn i {
        margin: 0;
    }
}

.header-user-actions {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.header-link {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.header-link:hover {
    color: var(--brand-accent);
}

.header-link .count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brand-accent);
    color: var(--text-primary);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-primary);
    white-space: nowrap;
    min-width: fit-content;
}

.user-balance i {
    color: var(--brand-accent);
}

.user-balance span {
    font-weight: 500;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    margin-left: 0.5rem;
    min-width: fit-content;
    z-index: 1000;
}

.dropdown-trigger {
    background: none;
    border: none;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* User Avatar Styles */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-accent);
    transition: all 0.2s ease;
}

.dropdown-trigger:hover .user-avatar {
    border-color: var(--brand-secondary);
    transform: scale(1.05);
}

.dropdown-trigger .fa-user-circle {
    font-size: 1.5rem;
    color: var(--brand-accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-trigger:hover {
    color: var(--brand-accent);
}

.dropdown-trigger:hover .fa-user-circle {
    opacity: 0.9;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-trigger .fa-chevron-down {
    font-size: 0.8em;
    transition: transform 0.2s ease;
}

.user-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 240px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 9999;
    min-width: 200px;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-header .user-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-section {
    flex-shrink: 0;
}

.dropdown-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-accent);
}

.dropdown-user-avatar-icon {
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-accent);
    border-radius: 50%;
}

.user-info-section {
    flex: 1;
    min-width: 0;
}

.user-name-dropdown {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-header .user-email {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-items {
    padding: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--brand-accent);
}

.dropdown-item i {
    width: 1.25rem;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-danger:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: var(--danger-color) !important;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline {
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--brand-accent);
}

.btn-primary {
    background: var(--brand-accent);
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--brand-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .user-balance {
        display: none;
    }

    .user-balance span {
        display: none;
    }

    .dropdown-trigger {
        padding: 0.5rem;
    }

    .dropdown-trigger .fa-user-circle {
        font-size: 1.25rem;
    }

    .user-name {
        display: none;
    }

    .dropdown-trigger .fa-chevron-down {
        display: none;
    }

    .dropdown-menu {
        width: 280px;
        right: -1rem;
    }

    #userActionsComponent .user-action-btn {
        padding: 0.5rem;
    }

    #userActionsComponent .user-action-btn i {
        margin: 0;
    }

    /* Mobile Auth Buttons - Icons Only */
    .auth-buttons {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        flex-wrap: nowrap;
    }

    .auth-buttons .auth-btn,
    .auth-buttons .btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: unset;
        font-size: 0.9rem;
        position: relative;
    }

    .auth-buttons .auth-btn span,
    .auth-buttons .btn span {
        display: none !important;
    }

    .auth-buttons .auth-btn i,
    .auth-buttons .btn i {
        margin: 0;
        font-size: 1rem;
    }

    /* Hide live clock on mobile */
    .live-clock {
        display: none;
    }

    /* Language selector mobile optimization */

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector .lang-current {
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-selector .lang-current:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.language-selector .current-flag {
    width: 20px;
    height: auto;
}

.language-selector .fa-chevron-down {
    display: none;
}

/* Language dropdown show/hide states */
.language-selector .lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 120px;
    z-index: 1000;
    margin-top: 0.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-selector.active .lang-dropdown,
.language-selector .lang-dropdown.show {
    display: block;
}

/* RTL support for language dropdown */
[dir="rtl"] .language-selector .lang-dropdown {
    right: auto;
    left: 0;
}

/* Desktop language dropdown styles */
@media (min-width: 769px) {
    .language-selector .lang-dropdown {
        min-width: 150px;
    }

    .language-selector .lang-option {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
}



    /* Language dropdown items - mobile optimization */
    .language-selector .lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem;
        text-decoration: none;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    .language-selector .lang-option:hover {
        background: var(--bg-light);
    }

    .language-selector .lang-option.active {
        background: var(--brand-accent);
        color: white;
    }

    .language-selector .lang-option img {
        width: 20px;
        height: auto;
    }

    .language-selector .lang-option span {
        font-size: 0.875rem;
    }
}

/* Membership Status */
.membership-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(45deg, var(--brand-accent), var(--brand-secondary));
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.membership-status i {
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* Enhanced Cart Styles */
.cart-link {
    position: relative;
    padding: 0.75rem !important;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Mobile Cart Link Optimization */
@media (max-width: 768px) {
    .cart-link {
        padding: 0.5rem !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.cart-link:hover {
    background: var(--bg-light);
    border-color: var(--brand-accent);
    transform: translateY(-1px);
}

.cart-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--brand-accent);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 90, 241, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(61, 90, 241, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 90, 241, 0);
    }
}

/* Cart link specific hover effects */
.cart-link:hover i {
    color: var(--brand-accent);
    transform: scale(1.1);
}

.cart-link:hover .cart-badge {
    background: var(--brand-secondary);
    animation: none;
    transform: scale(1.1);
}

/* Profile Dropdown Centering - Always centered under button in both LTR and RTL */
.user-dropdown .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-10px);
    text-align: left;
    direction: ltr;
}

.user-dropdown .dropdown-menu.show {
    transform: translateX(-50%) translateY(0);
}

/* RTL support for profile dropdown */
[dir="rtl"] .user-dropdown .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-10px);
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .user-dropdown .dropdown-menu.show {
    transform: translateX(-50%) translateY(0);
}

/* Mobile profile dropdown centering */
@media (max-width: 768px) {
    .user-dropdown .dropdown-menu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-10px);
        width: 280px;
    }
    
    .user-dropdown .dropdown-menu.show {
        transform: translateX(-75%) translateY(0);
    }
    
    [dir="rtl"] .user-dropdown .dropdown-menu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-10px);
    }
    
    [dir="rtl"] .user-dropdown .dropdown-menu.show {
        transform: translateX(-31%) translateY(0);
    }
}

@media (min-width: 769px) {
  .auth-buttons .auth-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4em;
      padding: 0.35em 1em;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 0.65em;
      min-width: 110px;
      height: 36px;
      box-sizing: border-box;
  }

  .auth-buttons .auth-btn i {
      font-size: 1em;
      margin-inline-end: 0.3em;
      line-height: 1;
      display: flex;
      align-items: center;
  }

  /* Make login button wider and prevent wrapping */
  .auth-buttons .auth-btn-login {
      min-width: 135px;
      white-space: nowrap;
  }
} 