/**
 * Public CSS for ShlokShield
 */

.shlokshield-captcha-container {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.shlokshield-captcha-question {
    margin-bottom: 10px;
}

.shlokshield-captcha-question label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.shlokshield-captcha-question input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.shlokshield-icon-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.shlokshield-icon-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.shlokshield-icon-option:hover {
    border-color: #007cba;
}

.shlokshield-icon-option input[type="radio"] {
    margin-bottom: 5px;
}

.shlokshield-icon-label {
    font-size: 14px;
}

.shlokshield-captcha-footer {
    margin-top: 10px;
}

.shlokshield-refresh-captcha {
    cursor: pointer;
    background: none;
    border: none;
    color: #007cba;
    text-decoration: underline;
    font-size: 12px;
    padding: 0;
}

.shlokshield-refresh-captcha:hover {
    color: #005a87;
}