
.smartcaptcha-container {
    max-width: 350px;
    margin: auto;
    text-align: center;
    background-color: #fff;
    background-color: var(--smart-captcha-background-color, #fff);
    border-radius: 11px;
    border-radius: var(--checkbox-captcha-border-radius, 11px);
    box-sizing: border-box;
    font-family: YS Text, Helvetica Neue, Helvetica, Arial, sans-serif;
    position: relative;
    user-select: none;
}

.smartcaptcha-inner {
    display: flex;
    flex-direction: column;
    padding: 14px 17px 0;
}

.smartcaptcha-slider-track {
    width: 100%;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.1);
    user-select: none;
    margin: auto;
}

.smartcaptcha-slider-thumb {
    width: 40px;
    height: 46px;
    background-color: #005280;
    border-radius: 16px;
    position: absolute;
    top: 2px;
    left: 0;
    cursor: grab;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

    .smartcaptcha-slider-thumb.dragging {
        cursor: grabbing;
        background-color: #005280;
    }

.smartcaptcha-hint {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.smartcaptcha-message {
    font-size: 16px;
    min-height: 20px;
}

    .smartcaptcha-message.success {
        color: green;
    }

    .smartcaptcha-message.error {
        color: red;
    }
