.slider-captcha-v2-container {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.slider-captcha-v2-canvas {
    position: relative;
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.slider-captcha-v2-canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-captcha-v2-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-captcha-v2-track {
    flex: 1;
    height: 40px;
    background: #e9ecef;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.slider-captcha-v2-thumb {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-captcha-v2-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.slider-captcha-v2-thumb.dragging {
    transform: scale(1.1);
}

.slider-captcha-v2-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    pointer-events: none;
}

.slider-captcha-v2-success {
    background: linear-gradient(135deg, #198754, #157347) !important;
}

.slider-captcha-v2-fail {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

.slider-captcha-v2-refresh {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slider-captcha-v2-refresh:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.slider-captcha-v2-refresh:disabled {
    background: #adb5bd;
    cursor: not-allowed;
    transform: none;
}

