/* Custom styles for RTL support */
body {
    font-family: 'Yekan', 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form input styling */
input[type="text"],
input[type="number"],
input[type="checkbox"],
select {
    font-family: inherit;
}

/* Custom checkbox */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 18px;
    height: 18px;
    padding: 2px;
    background-clip: content-box;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    margin-left: 5px;
}

input[type="checkbox"]:checked {
    background-color: #1e40af;
    border-color: #1e40af;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}