@font-face {
    font-family: "shabnam";
    src: url("../fonts/shabnam_fd.woff");
}

html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    direction: rtl;
    text-align: right;
    font-family: "shabnam";
    min-height: 100vh;
}

body {
    background-image: url('/images/bg/sunrise.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Width and height for the scrollbar track */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Background color of the scrollbar track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Styles for the scrollbar handle */
::-webkit-scrollbar-thumb {
    background: #23a6d5;
}

/* On hover, styles for the scrollbar handle */
::-webkit-scrollbar-thumb:hover {
    background: #e73c7e;
}

.rtl {
    direction: rtl;
    text-align: right;
}

.ltr {
    direction: ltr;
    text-align: left;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
[type="text"].form-control:focus,
[type="password"].form-control:focus,
[type="email"].form-control:focus,
[type="tel"].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 #ddd;
}

.nav .nav-link.active {
    color: gray;
}

.svg-20 {
    width: 20px;
    height: 20px;
}

.svg-24 {
    width: 24px;
    height: 24px;
}

.svg-white {
    fill: #fff;
}

.svg-dark {
    fill: #222;
}

.svg-primary {
    fill: var(--bs-blue);
}

.outline-svg-btn:hover svg {
    fill: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-wait {
    cursor: wait;
}

.nav-link:not(.active) {
    color: #fff;
    font-weight: bold !important;
    outline: none !important;
}

.nav-link.active {
    color: var(--bs-pink) !important;
    font-weight: bold !important;
    outline: none !important;
}


.english-font {
    font-family: calibri;
}

a,
a:hover,
a:active {
    text-decoration: inherit;
}


.font-10 {
    font-size: 10px;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

#main-column {
    background-color: #44444499;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


.dropdown-container {
    position: relative;
    width: 100%;
}

.selected-items {
    margin-bottom: 5px;
    font-style: italic;
}

.input-box {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-item {
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-item .delete {
    color: red;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}