/* Исправление чекбокса - галочка слева, текст справа */
.checkbox-group {
    margin-bottom: 20px !important;
}

.checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 10px !important;
    cursor: pointer !important;
    user-select: none !important;
}

.checkbox-label input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

.checkbox-custom {
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    margin-top: 2px !important;
    border: 2px solid rgba(138, 92, 246, 0.4) !important;
    border-radius: 4px !important;
    background: rgba(30, 30, 60, 0.6) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    order: 1 !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: #6366f1 !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: bold !important;
}

.checkbox-text {
    flex: 1 !important;
    order: 2 !important;
    font-size: 13px !important;
    color: #94a3b8 !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.checkbox-text a {
    color: #6366f1 !important;
    text-decoration: none !important;
}

.checkbox-text a:hover {
    color: #a78bfa !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .checkbox-text {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .checkbox-text {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }
    
    .checkbox-custom {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
    }
}








