/* =====================================================
   تنسيقات إضافية لأداة حساب نقط الحركة الانتقالية
   ===================================================== */

/* Custom Checkbox Toggle Styles */
.custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: relative;
    height: 24px;
    width: 24px;
    background-color: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-checkbox:hover input ~ .checkmark {
    background-color: #e5e7eb;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: #00b09b;
    border-color: #00b09b;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
