:root {
    --theme-color: #d0a33a;
    }
    
.header-button .th-btn {
    padding: 15px !important;
    margin-left: 10px !important;
}

.header-links li > i {
    color: #ffffff !important;
}

.header-links li.lang-wrapper i {
    color: #fff !important;
}
.th-btn.sm.style3 {
    padding: 15px !important;
}
.th-btn {
    border-radius: 18px !important;
}
.user-menu-trigger {
    border-radius: 18px;
}
/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-menu-toggle {
    background: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.inventory-price-bottom .th-btn {
    padding: 20px 10px;
    border-radius: 18px;
}

.user-menu-toggle:hover {
    background: var(--theme-color);
    color: white;
}

.user-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
}

.user-dropdown .dropdown-item {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
}

.user-dropdown .dropdown-item:hover {
    background: var(--theme-color);
    color: white;
}

.user-dropdown .dropdown-divider {
    margin: 8px 0;
}

/* Dashboard specific styles */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-color);
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Filter tabs */
.filter-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: inline-block;
}

.tab-btn.active {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}

.tab-btn:hover {
    text-decoration: none;
    color: #333;
}

.tab-btn.active:hover {
    color: white;
}

/* Purchase History & Documents */
.purchase-card, .document-card, .saved-search-item {
    transition: all 0.3s ease;
}

.purchase-card:hover, .document-card:hover, .saved-search-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.alert-active {
    background: linear-gradient(135deg, #f8f9fa 0%, #e7f3ff 100%);
    border-left: 4px solid #007bff;
}

.alert-inactive {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
}

.status-completed, .invoice-status-paid, .title-status-available {
    background: #d4edda !important;
    color: #155724 !important;
}

.status-pending, .invoice-status-pending {
    background: #fff3cd !important;
    color: #856404 !important;
}

.status-cancelled {
    background: #f8d7da !important;
    color: #721c24 !important;
}

.title-status-processing {
    background: #ffeaa7 !important;
    color: #856404 !important;
}

/* Search Alerts */
.alert-unread {
    background: #e7f3ff;
    border-left: 4px solid #007bff;
}

.alert-read {
    background: #f8f9fa;
    border-left: 4px solid #6c757d;
}

.alert-item {
    transition: all 0.3s ease;
}

.alert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Empty States */
.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.empty-state i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #6c757d;
    margin-bottom: 30px;
}

@media (max-width: 1600px) {
    .header-button .th-btn {
         display: block; 
    }
}
@media (max-width: 1399px) {
    .header-button .th-btn {
         display: block; 
    }
}