/* Keep title left and status right in one line */
.fz-captcha-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.claim-status { font-weight: 700; white-space: nowrap; }
.claim-status--success { color: #00c853; }
.claim-status--error   { color: #ff4d4f; }
.claim-status--inline  { margin-left: auto; }

.captcha-question { color: #ff4da6; font-weight: 800; }

/* Gray-out while disabled */
.fz-captcha.is-disabled { opacity: 0.6; }
.fz-captcha.is-disabled .form-control {
    background-color: #202a38;
    color: #8a93a6;
    cursor: not-allowed;
}

/* NEW: today total styling */
.fz-today-total { margin-top: 4px; }
.fz-today-total small { color: #8a93a6; }
.fz-today-total .val { color: #8ee6ff; font-weight: 700; }

.success-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem; /* ~18px */
    color: #10b981; /* emerald-500 */
    background: linear-gradient(90deg, rgba(16,185,129,.12), rgba(16,185,129,.06));
    border: 1px solid rgba(16,185,129,.35);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
}
.success-banner::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    font-weight: 800;
    color: #10b981;
    background: rgba(16,185,129,.18);
    border: 1px solid rgba(16,185,129,.35);
    border-radius: 50%;
}

/* Referral code box on referrals page */
.referral-earnings {
    display: grid;
    gap: 12px;
    align-items: stretch;
}
@media (min-width: 720px) {
    .referral-earnings { grid-template-columns: 1fr 240px; }
}
.referral-code-box {
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--card-shadow);
}
.referral-code-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.referral-code-label { font-weight: 800; color: var(--text); }
.referral-code-note { color: var(--muted); font-weight: 700; }
.referral-code-input { display: flex; align-items: center; gap: 10px; }
.referral-code-input input {
    flex: 1;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.referral-copy-btn { flex-shrink: 0; }
.referral-total-box {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    min-width: 200px;
}
.referral-total-label { font-weight: 800; color: var(--text); }
@media (max-width: 719px) {
    .referral-total-box { flex-direction: row; align-items: center; }
}