/* Custom Overrides to replace inline styles */

/* Containers */
.container-restricted {
    max-width: 1000px;
    padding: 2rem 1rem;
    margin: 0 auto;
}

.container-settings {
    max-width: 900px;
    padding: 2rem 1rem;
    margin: 0 auto;
}

/* Cards */
.card-styled {
    border: 1px solid var(--gray-200, #e2e8f0);
    border-radius: var(--radius-lg, 0.5rem);
}

.card-referral {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 1px solid var(--gray-200, #e2e8f0);
    border-radius: var(--radius-lg, 0.5rem);
}

/* Stats */
.stat-box {
    background: var(--gray-50, #f8fafc);
    border-radius: var(--radius-md, 0.375rem);
    padding: 1rem;
}

/* Progress Bars */
.progress-sm {
    height: 6px;
}

.progress-md {
    height: 12px;
}

/* Pricing Page */
.scale-up-card {
    transform: scale(1.05);
    z-index: 1;
}

.billing-toggle-container {
    padding-left: 3.5em;
}

.billing-toggle-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

/* Typography */
.text-referral-code {
    background: white;
    font-weight: bold;
    font-family: monospace;
}

.referral-stat {
    font-size: 2rem;
    font-weight: bold;
}

.container-max-700 {
    max-width: 700px;
}

.container-max-600 {
    max-width: 600px;
}