.body_main {
    direction: rtl;
    text-align: right;
    padding-top: 0px;
    width: 100%;
    background: #ecf0fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main_h1 {
    color: #09137f;
    font-size: 1.7rem;
    font-weight: 600;
}

.main_sec {
    width: 100%;
}

main {
    padding: 0;
}

body {
    font-family: "Cairo", sans-serif;
}

.main_header {
    width: 95%;
    margin: 0 auto;
    padding: 6px;
    padding-right: 0px;
}

.label_class {
    color: #002238;
    font-weight: 600;
    font-size: 14px;
}

.input_sec {
    display: grid;
    grid-template-columns: auto auto auto auto;
    /* justify-content: space-between; */
    gap: 7px;
    width: 100%;
    margin: 0 auto;
    column-gap: 10px;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
}

.input {
    display: flex;
    flex-direction: column;
}

.input_field {
    border: rgba(0, 0, 0, 0.11) 1px solid;
    border-radius: 10px !important;
    padding: 5px;
    outline: none;
    font-size: 14px !important;
}

.input_field2 {
    border: rgba(0, 0, 0, 0.11) 1px solid;
    border-radius: 7px;
    padding: 5px;
    outline: none;
}

.select {
    border: rgba(0, 0, 0, 0.11) 1px solid;
    border-radius: 10px;
    padding: 2px;
    outline: none;
}

.select:focus {
    outline: none;
}

/* Style the dropdown toggle button */
.bootstrap-select .dropdown-toggle {
    position: relative;
    /* For positioning the arrow */
    background-color: transparent;
    border: none;
    color: inherit;
    text-align: right;
    /* Align text to the right */
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    /* Increase padding for better height */
    height: 3rem;
    /* Set the height of the input */
    display: flex;
    /* Use Flexbox for alignment */
    align-items: center;
    /* Center items vertically */
    line-height: 1.5;
    /* Adjust line height for better alignment */
    font-size: 1rem;
    /* Ensure font size matches Bootstrap */
}

/* Customize the arrow */
.bootstrap-select .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-width: 0.25rem;
    border-style: solid;
    border-color: transparent transparent transparent #000;
    /* Arrow color */
    position: absolute;
    left: 0.5rem;
    /* Position the arrow on the left side */
    top: 50%;
    /* Center vertically */
    transform: rotate(90deg);
    /* Center vertically */
}

/* Style for dropdown menu items */
.dropdown-item {
    text-align: right !important;
    /* Ensure text aligns to the right */
    box-shadow: none;
    /* Remove box-shadow */
}

.bootstrap-select .dropdown-toggle {
    height: 2rem;
}

/* Remove any existing box-shadow or border on focus */
.bootstrap-select .dropdown-toggle:focus {
    border: none;
    /* Remove border on focus */
    box-shadow: none;
    /* Remove box-shadow on focus */
}

/* Style the filter option */
.filter-option {
    background: white;
    border: rgba(0, 0, 0, 0.11) 1px solid;
    border-radius: 7px;
    text-align: right !important;
    /* Align text to the right */
    outline: none;
    padding: 5px !important;
    height: unset !important;
    /* Add padding for consistency */
}

.filter-option-inner {
    padding: 0 !important;
    /* Remove padding */
}

.input_field:focus {
    border-color: #0161e8b8;
}

.input_field2:focus {
    border-color: #0161e8b8;
}

.select:focus {
    border-color: #0161e8b8;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.table_section {
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
}

.table {
    width: 100%;
}

tr {
    color: #002238;
}

.btns_dev {
    width: 30%;
    display: flex;
    gap: 10px;
    align-items: end;
}

.filters {
    display: flex;
    gap: 10px;

    padding: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.filters .input_label_filter {
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 600;
}

.fill_btn {
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 200px;
    background-color: #064daf;
    color: white;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    font-size: 13px;
    height: fit-content;
}

.fill_btn:hover {
    opacity: 0.7;
}

.fill_btn:focus {
    outline: none;
}

.fill_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fill_btn_icon {
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #064daf;
    color: white;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    height: fit-content;
    white-space: nowrap;
    font-size: 13px;
    display: flex;
    gap: 5px;
}

.fill_btn_icon:hover {
    opacity: 0.7;
}

.fill_btn_icon:focus {
    outline: none;
}

.fill_btn_icon:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.new_btn {
    outline: none;
    border: #0162e8 1px solid;
    padding: 7px 15px;
    border-radius: 7px;
    background-color: transparent;
    color: #0162e8;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    height: fit-content;
}

.new_btn:hover {
    opacity: 0.7;
}

.new_btn:focus {
    outline: none;
}

.table td,
.table th {
    text-align: center;
    white-space: nowrap;
    border-top: none !important;
}

#tbody tr:nth-child(even) {
    background-color: #f6f6f6;
}

th {
    border-bottom: 1px solid rgb(0 0 0 / 13%);
}

.table tbody + tbody {
    border: none !important;
}
