﻿.sa-checkbox-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    user-select: none;
}

.sa-checkbox-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sa-checkbox-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    margin-top: 2px;
}

.sa-checkbox-input:checked + .sa-checkbox-custom {
    background: linear-gradient( 135deg, #4f46e5, #6366f1);
    border-color: #4f46e5;
}

.sa-checkbox-check {
    color: white;
    font-size: 13px;
    font-weight: 800;
}

.sa-checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sa-checkbox-text {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.sa-checkbox-hint {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}
