        /* Dashboard Styles */
        .dashboard-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
        }

        .dashboard-header {
            margin-bottom: 2rem;
        }

        .dashboard-header h1 {
            font-size: 1.75rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .dashboard-header p {
            color: var(--text-secondary);
        }

        /* Profile Card */
        .profile-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .profile-header {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .profile-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .profile-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-info {
            flex: 1;
        }

        .profile-info h2 {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
            color: var(--text-primary);
        }

        .profile-info .email {
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
        }

        .profile-badges {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .badge.admin {
            background: #fee2e2;
            color: #991b1b;
        }

        .badge.seller {
            background: #dcfce7;
            color: #166534;
        }

        .badge.support {
            background: #dbeafe;
            color: #1e40af;
        }

        .badge.moderator {
            background: #fef3c7;
            color: #92400e;
        }

        .profile-meta {
            display: flex;
            gap: 2rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .profile-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Dashboard Grid */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .dashboard-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 1.5rem;
        }

        .card-header-with-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .card-header-with-link h3 {
            margin-bottom: 0;
        }

        .view-all-link {
            font-size: 0.875rem;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .view-all-link:hover {
            text-decoration: underline;
        }

        .dashboard-card h3 {
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dashboard-card h3 svg {
            width: 20px;
            height: 20px;
            color: var(--primary-color);
        }

        /* Settings Form */
        .settings-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .form-group input {
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            transition: border-color 0.2s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-group input:disabled {
            background: var(--background);
            color: var(--text-secondary);
        }

        .form-hint {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        /* Username Input */
        .username-input-wrapper {
            display: flex;
            align-items: center;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: border-color 0.2s;
        }

        .username-input-wrapper:focus-within {
            border-color: var(--primary-color);
        }

        .username-input-wrapper.available {
            border-color: var(--success-color);
        }

        .username-input-wrapper.unavailable {
            border-color: var(--error-color);
        }

        .username-prefix {
            padding: 0.75rem 0.5rem 0.75rem 1rem;
            color: var(--text-secondary);
            font-weight: 500;
            background: var(--background);
            border-right: 1px solid var(--border-color);
        }

        .username-input-wrapper input {
            flex: 1;
            border: none;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
        }

        .username-input-wrapper input:focus {
            outline: none;
            border: none;
        }

        .username-status {
            font-size: 0.8rem;
            margin-top: 0.35rem;
            min-height: 1.2em;
        }

        .username-status.checking {
            color: var(--text-secondary);
        }

        .username-status.available {
            color: var(--success-color);
        }

        .username-status.unavailable {
            color: var(--error-color);
        }

        .username-suggestions {
            margin-top: 0.5rem;
            font-size: 0.8rem;
        }

        .suggestions-label {
            color: var(--text-secondary);
            margin-right: 0.5rem;
        }

        .username-suggestion {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            margin: 0.125rem;
            background: var(--primary-light);
            color: var(--primary-color);
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.15s;
        }

        /* Email Input Wrapper */
        .email-input-wrapper {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .email-input-wrapper input {
            flex: 1;
        }

        /* Email Change Modal */
        .email-step {
            display: none;
        }

        .email-step.active {
            display: block;
        }

        .verification-code-input {
            text-align: center;
            font-size: 1.75rem;
            font-family: monospace;
            letter-spacing: 0.5rem;
            padding: 1rem !important;
        }

        .resend-link {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .resend-link a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .resend-link a:hover {
            text-decoration: underline;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            background: var(--success-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }

        .email-change-success {
            text-align: center;
        }

        .email-change-success h4 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .username-suggestion:hover {
            background: var(--primary-color);
            color: white;
        }

        .form-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        /* Seller Request Section */
        .seller-section {
            background: var(--background-warm);
            border-radius: var(--radius-md);
            padding: 1.5rem;
        }

        .seller-section h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .seller-section p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .seller-status {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
        }

        .seller-status.pending {
            border-color: #fbbf24;
            background: #fffbeb;
        }

        .seller-status.approved {
            border-color: #22c55e;
            background: #f0fdf4;
        }

        .seller-status.denied {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .status-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .seller-status.pending .status-icon {
            background: #fef3c7;
        }

        .seller-status.approved .status-icon {
            background: #dcfce7;
        }

        .seller-status.denied .status-icon {
            background: #fee2e2;
        }

        /* Request Form */
        .request-form {
            margin-top: 1rem;
        }

        .request-form textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-family: inherit;
            resize: vertical;
            min-height: 80px;
        }

        .request-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 2rem;
            color: var(--text-secondary);
        }

        .empty-state svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        /* Content List */
        .content-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .content-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--background);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: background-color 0.15s, transform 0.15s;
        }

        .content-item:hover {
            background: var(--primary-light);
            transform: translateX(4px);
        }

        .content-item-title {
            font-weight: 500;
            color: var(--text-primary);
        }

        .content-item-meta {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        /* Resource item wrapper with expand/collapse */
        .content-item-wrapper {
            display: flex;
            flex-direction: column;
        }

        .content-item-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .expand-toggle {
            background: none;
            border: none;
            padding: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: color 0.15s, background-color 0.15s;
        }

        .expand-toggle:hover {
            color: var(--primary-color);
            background: var(--primary-light);
        }

        .expand-icon {
            transition: transform 0.2s ease;
        }

        .expand-icon.expanded {
            transform: rotate(90deg);
        }

        /* Child items container */
        .item-children {
            margin-left: 32px;
            margin-top: 0.5rem;
            padding-left: 0.75rem;
            border-left: 2px solid var(--border-color);
        }

        .items-list {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .item-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.5rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            background: var(--background);
            border-radius: var(--radius-sm);
        }

        .item-type-badge {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 0.1rem 0.4rem;
            border-radius: 3px;
            background: var(--primary-light);
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .item-title {
            flex: 1;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .item-creator {
            font-size: 0.7rem;
            color: var(--text-tertiary);
            flex-shrink: 0;
        }

        .items-loading,
        .items-empty,
        .items-error {
            font-size: 0.8rem;
            color: var(--text-secondary);
            padding: 0.5rem;
            font-style: italic;
        }

        .items-error {
            color: var(--error-color);
        }

        /* Draft badge */
        .badge.draft-badge {
            background: #fef3c7;
            color: #92400e;
        }

        /* Login Required */
        .login-required {
            text-align: center;
            padding: 4rem 2rem;
        }

        .login-required h2 {
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .login-required p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        /* Toast */
        .toast-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 2000;
        }

        .toast {
            background: var(--text-primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            margin-top: 0.5rem;
            animation: slideIn 0.3s ease;
        }

        .toast.success {
            background: var(--success-color);
        }

        .toast.error {
            background: var(--error-color);
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Font Preferences */
        .favorite-fonts-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .favorite-font-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            background: var(--background);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
        }

        .favorite-font-item:hover {
            border-color: var(--primary-color);
        }

        .font-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .font-name {
            font-weight: 500;
            color: var(--text-primary);
        }

        .font-category {
            font-size: 0.75rem;
            color: var(--text-secondary);
            background: var(--card-bg);
            padding: 0.125rem 0.5rem;
            border-radius: 1rem;
        }

        .btn-icon {
            background: none;
            border: none;
            padding: 0.25rem;
            cursor: pointer;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: color 0.15s, background-color 0.15s;
        }

        .btn-icon:hover {
            color: var(--error-color);
            background: #fee2e2;
        }

        .add-favorite-section {
            margin-top: 0.75rem;
        }

        .font-picker-wrapper select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px dashed var(--border-color);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            background: var(--card-bg);
            color: var(--text-secondary);
            cursor: pointer;
            transition: border-color 0.15s;
        }

        .font-picker-wrapper select:hover {
            border-color: var(--primary-color);
        }

        .font-picker-wrapper select:focus {
            outline: none;
            border-color: var(--primary-color);
            border-style: solid;
        }

        .empty-favorites {
            padding: 1rem;
            text-align: center;
        }

        /* My Standards Section */
        .standards-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .standard-bookmark-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: var(--background);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            text-decoration: none;
            color: inherit;
            transition: border-color 0.15s, transform 0.15s, background-color 0.15s;
        }

        .standard-bookmark-item:hover {
            border-color: var(--primary-color);
            background: var(--primary-light);
            transform: translateX(4px);
        }

        .standard-bookmark-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }

        .standard-bookmark-icon svg {
            width: 18px;
            height: 18px;
            color: var(--primary-color);
        }

        .standard-bookmark-content {
            flex: 1;
            min-width: 0;
        }

        .standard-bookmark-title {
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .standard-bookmark-subtitle {
            font-size: 0.75rem;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .standard-bookmark-badge {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            background: var(--primary-light);
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .loading-state {
            padding: 2rem;
            text-align: center;
            color: var(--text-secondary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dashboard-container {
                padding: 1rem;
            }

            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-badges {
                justify-content: center;
            }

            .profile-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Purchases preview list */
        .purchases-preview-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .purchase-preview-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--background);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: inherit;
            transition: background 0.15s, transform 0.15s;
        }

        .purchase-preview-item:hover {
            background: var(--primary-light);
            transform: translateX(4px);
        }

        .purchase-preview-title {
            font-weight: 500;
            color: var(--text-primary);
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-right: 1rem;
        }

        .purchase-preview-meta {
            font-size: 0.75rem;
            color: var(--text-secondary);
            flex-shrink: 0;
        }

        /* Cairo Credits Card */
        .credits-balance {
            text-align: center;
            padding: 1rem 0;
        }

        .credits-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .credits-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        .credits-promo-note {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            margin-top: 0.5rem;
            font-style: italic;
        }

        .credits-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .credits-actions .btn {
            flex: 1;
        }

        .credits-history-link {
            display: block;
            text-align: center;
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
        }

        .credits-history-link:hover {
            text-decoration: underline;
        }

        /* Modal Overlay (shared) */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 1rem;
        }

        .modal-content {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 480px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-header h3 {
            font-size: 1.125rem;
            color: var(--text-primary);
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }

        .modal-close:hover {
            color: var(--text-primary);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-top: 1px solid var(--border-color);
            background: var(--background);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }

        /* Top-up Amount Selection */
        .topup-amounts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .topup-option {
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            background: var(--card-bg);
            cursor: pointer;
            text-align: center;
            transition: border-color 0.15s, background-color 0.15s;
        }

        .topup-option:hover {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .topup-option.topup-selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .topup-option .amount {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .topup-option .credits {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        .topup-custom {
            margin-top: 1rem;
        }

        .topup-custom label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .topup-custom-input {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .topup-custom-input span {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .topup-custom-input input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 1rem;
            text-align: center;
        }

        .topup-custom-input input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .topup-summary {
            margin-top: 1rem;
            padding: 1rem;
            background: var(--background);
            border-radius: var(--radius-md);
            text-align: center;
        }

        .topup-summary .total {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .topup-summary .total strong {
            font-size: 1.25rem;
            color: var(--text-primary);
        }

        /* Withdraw Modal */
        .withdraw-balance {
            text-align: center;
            padding: 1rem;
            background: var(--background);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
        }

        .withdraw-balance .label {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .withdraw-balance .amount {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .withdraw-form label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .withdraw-form input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 1rem;
        }

        .withdraw-form input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .withdraw-note {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        /* Transactions Table */
        .transactions-table {
            width: 100%;
            border-collapse: collapse;
        }

        .transactions-table th {
            text-align: left;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            padding: 0.75rem;
            border-bottom: 2px solid var(--border-color);
        }

        .transactions-table td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.875rem;
            color: var(--text-primary);
        }

        .transactions-table .transaction-row:last-child td {
            border-bottom: none;
        }

        .transaction-amount {
            font-weight: 600;
            font-family: monospace;
        }

        .transaction-amount.positive {
            color: var(--success-color);
        }

        .transaction-amount.negative {
            color: var(--error-color);
        }

        .transaction-type {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            background: var(--background);
        }

        .transaction-type.top_up { background: #dcfce7; color: #166534; }
        .transaction-type.purchase { background: #fee2e2; color: #991b1b; }
        .transaction-type.sale_earning { background: #dcfce7; color: #166534; }
        .transaction-type.promotional { background: #dbeafe; color: #1e40af; }
        .transaction-type.withdrawal { background: #fef3c7; color: #92400e; }
        .transaction-type.refund { background: #fce7f3; color: #9d174d; }

        .transactions-empty {
            text-align: center;
            padding: 2rem;
            color: var(--text-secondary);
        }

        /* Responsive Modal */
        @media (max-width: 480px) {
            .topup-amounts {
                grid-template-columns: repeat(2, 1fr);
            }

            .modal-content {
                max-height: 80vh;
            }
        }
