/* Apply Cairo font to all elements */

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-VariableFont_slnt,wght.ttf') format('truetype-variations');
    font-weight: 200 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/static/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
select,
textarea,
.btn,
.form-control,
.card-title,
.nav-link,
.dropdown-item,
.alert,
.modal-title,
.table th,
.table td {
    font-family: 'Cairo', sans-serif !important;
}


/* Adjust font weights */

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-light {
    font-weight: 300 !important;
}


/* RTL specific adjustments */

[dir="rtl"] body {
    font-family: 'Cairo', sans-serif !important;
    letter-spacing: 0;
}


/* Modal content RTL alignment */

.modal-body.text-end {
    text-align: right !important;
    direction: rtl !important;
}