/**
 * CyberVibe CAPTCHA Styles
 *
 * @version 1.1.0
 */

/* Main container for the CAPTCHA block. */
.cyber-captcha {
    margin: 1em 0;
    padding: 1em;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00f0ff;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
}

/* The CAPTCHA question text. */
.cyber-captcha-question {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 0.5em;
    background: linear-gradient(90deg, #00f0ff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container for the radio button options. */
.cyber-captcha-options {
    margin-top: 10px;
}

/* Style for each answer label. */
.cyber-captcha-options label {
    display: block;
    margin: 0.5em 0;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

/* Style for the radio button itself. */
.cyber-captcha-options input[type="radio"] {
    margin-right: 0.8em;
    vertical-align: middle;
}

/* Style for the selected label (visual feedback from captcha.js). */
.cyber-captcha-options label.selected {
    color: #00ff99;
    text-shadow: 0 0 5px #00ff99;
}