/* =============================================================
   problem-mining.css — /problem-mining page overrides
   Load alongside early.css. Uses the same CSS variables.
   Only contains styles not already covered by early.css.
   ============================================================= */

/* Download button — green to signal action, distinct from submit */
.pm-btn-download {
    background: #16A34A;
    margin-bottom: 12px;
}
.pm-btn-download:hover { background: #15803D; }

/* "Done" button — secondary, below the download button */
.pm-btn-done {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}
.pm-btn-done:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* Inline error messages */
.pm-error {
    display: none;
    font-size: 13px;
    color: #DC2626;
    margin-top: 4px;
}

/* Success icon — override emoji with branded check */
#pm-thankyou-state .early-success-icon {
    width: 56px;
    height: 56px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    color: #16A34A;
}