/* WP Image CAPTCHA – minimal stylesheet, ~1 KB */
.wpic-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 220px;
    margin: 10px 0;
}

.wpic-image-wrap svg {
    display: block;
    border: 1px solid #d0d8e8;
    border-radius: 6px;
    user-select: none;
}

.wpic-refresh {
    align-self: flex-start;
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    text-decoration: underline;
}

.wpic-refresh:hover { color: #005580; }

.wpic-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.wpic-answer {
    width: 100%;
    padding: 6px 10px;
    font-size: 16px;
    letter-spacing: 3px;
    border: 1px solid #aab8cc;
    border-radius: 4px;
    box-sizing: border-box;
    text-transform: uppercase;
}

.wpic-answer:focus {
    outline: 2px solid #0073aa;
    border-color: #0073aa;
}

.wpic-error {
    color: #cc0000;
    font-size: 13px;
}

/* Loading state during refresh */
.wpic-loading .wpic-image-wrap svg {
    opacity: 0.4;
}
