/* promocodes.html specific styles */

        .promo-code {
            font-family: monospace;
            font-weight: 600;
            color: var(--accent-primary);
            background: var(--accent-muted);
            padding: 4px 8px;
            border-radius: 4px;
        }

        .usage-bar {
            width: 80px;
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 3px;
            overflow: hidden;
        }

        .usage-fill {
            height: 100%;
            background: var(--accent-primary);
            border-radius: 3px;
        }

        .usage-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
