/* Screen-specific styles for Corporate_Account_Management_Screen */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }
        
        .screen {
            height: 100%;
            overflow-y: auto;
        }
        
        .content {
            padding-bottom: 80px;
        }
        
        .purple-light-bg {
            background-color: #f5f3ff;
        }
        
        .purple-tint {
            color: #7c3aed;
        }
        
        .accent-color {
            color: #ea580c;
        }
        
        .accent-bg {
            background-color: #ea580c;
        }
        
        /* Corporate-specific styles */
        .corporate-gradient-bg {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            color: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .corporate-gradient-bg:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
        }
        
        .corporate-accent-color {
            color: #6366f1;
        }
        
        /* Team member card styles */
        .team-member-card {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .team-member-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }
        
        .team-member-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
        }
        
        .team-member-info {
            flex: 1;
        }
        
        .team-member-name {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 2px;
            color: #1f2937;
        }
        
        .team-member-role {
            font-size: 13px;
            color: #6b7280;
        }
        
        .team-member-actions {
            display: flex;
            gap: 8px;
        }
        
        /* Budget progress styles */
        .budget-progress-container {
            height: 8px;
            background-color: #e5e7eb;
            border-radius: 4px;
            overflow: hidden;
            margin: 12px 0;
        }
        
        .budget-progress-bar {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, #6366f1, #4f46e5);
            transition: width 0.5s ease;
        }
        
        .budget-info {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #6b7280;
        }
        
        .budget-spent {
            font-weight: 600;
            color: #4f46e5;
        }
        
        .budget-total {
            color: #9ca3af;
        }
        
        /* Department section styles */
        .department-section {
            margin-bottom: 24px;
        }
        
        .department-title {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 12px;
            color: #1f2937;
        }
        
        .department-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background-color: #ede9fe;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: #6366f1;
        }
        
        /* Order history item styles */
        .order-history-item {
            background: white;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .order-history-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
        }
        
        .order-history-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .order-history-id {
            font-weight: 600;
            font-size: 15px;
            color: #1f2937;
        }
        
        .order-history-date {
            font-size: 13px;
            color: #6b7280;
        }
        
        .order-history-items {
            margin-bottom: 12px;
            font-size: 14px;
            color: #4b5563;
        }
        
        .order-history-total {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 15px;
            color: #1f2937;
            padding-top: 12px;
            border-top: 1px solid #f3f4f6;
        }
        
        /* Fix for bottom navigation */
        .bottom-navigation {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #f1f1f1;
            padding: 12px 24px;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 100;
        }
