@font-face {
    font-family: iranSansBold;
    src: url(../font/IRANSansXFaNum-DemiBold.ttf);
}

@font-face {
    font-family: iranSansMedium;
    src: url(../font/IRANSansXFaNum-Medium.ttf);
}

@font-face {
    font-family: iranSansRegular;
    src: url(../font/IRANSansXFaNum-Regular.ttf);
}

@font-face {
    font-family: iranSansThin;
    src: url(../font/IRANSansXFaNum-Thin.ttf);
}

:root {
    --bold-font: iranSansBold;
    --medium-font: iranSansMedium;
    --regular-font: iranSansRegular;
    --thin-font: iranSansThin;
    --first-color: black;
    --second-color: #e07008;
    --hover-color: #e07008cb;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--medium-font)
}

* input::placeholder {
    font-family: var(--medium-font)
}

html {
    background-color: white !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#root {
    width: 100vw;
    max-width: 800px;
    background-color: #fafafa;
    height: 100dvh;
    box-shadow: #eee 0 0 2px 0px inset;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login_register_layout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
}

.columns {
    width: 100%;
    justify-items: center;
}

.container {
    justify-items: center;

}

.back_button {
    display: none !important;
}

/* 
=====================================
============== panel ================
=====================================
 */

.dashboard-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    width: 100%;
    justify-items: center;
    padding: 20px;
    border: 2px solid #6e6e6e;
}

/* .dashboard_title {
    width: 100%;
    text-align: right;
    padding: 10px 30px;
} */


.panel_section h4 {
    color: black;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--hover-color);
    padding: 10px;
    width: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-card p {
    color: #363636;
    font-weight: bold;
}



.panel_section .status {
    padding: 15px 2rem 15px 2rem;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

/* .panel_section .status .more_info_sec {
    border-top: #000 1px solid;
} */

.panel_section .status .more_info span {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.panel_section .status .more_info p {
    font-size: 12px;
    color: #666;
}

.panel_section .status .stats-card {
    background: #fff;
    border-radius: 12px;
    align-content: center;
    height: -webkit-fill-available;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    /* border: 1px double #303030; */
}

.panel_section .status .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.panel_section .status .stats-card .title {
    color: #363636;
}

.panel_section .status .stats-card .subtitle {
    color: #7a7a7a;
}

.panel_section hr {
    height: 2px !important;
    background-color: #000 !important;
    color: #000 !important;
    width: 100% !important;
}

.panel_section .animated-divider {
    width: 100%;
    overflow: hidden;
    margin: 0rem 0;
}

.panel_section .animated-divider svg {
    width: 100%;
    height: 20px;
}

.panel_section .animated-divider path {
    stroke: var(--second-color);
    stroke-width: 3;
    fill: transparent;
    stroke-dasharray: 1200;
    stroke-dashoffset: -1200;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.panel_section .animated-divider2 {
    width: 100%;
    overflow: hidden;
    margin: 0rem 0;
    position: relative;
    bottom: 1rem;
}

.panel_section .animated-divider2 svg {
    width: 100%;
    height: 20px;
}

.panel_section .animated-divider2 path {
    stroke: var(--second-color);
    stroke-width: 3;
    fill: transparent;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.panel_section .animated-divider3 {
    width: 100%;
    overflow: hidden;
    margin: 0rem 0;
    position: relative;
    bottom: 2rem;
}

.panel_section .animated-divider3 svg {
    width: 100%;
    height: 20px;
}

.panel_section .animated-divider3 path {
    stroke: var(--second-color);
    stroke-width: 3;
    fill: transparent;
    stroke-dasharray: 1200;
    stroke-dashoffset: -1200;
    animation: drawLine 2s ease-in-out forwards;
}

.dashboard-card .image {
    width: 64px;
    height: 64px;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}


/* 
=====================================
============ panel end  =============
=====================================
 */



/* 
=====================================
============ login page =============
=====================================
 */

.login_page,
.register_page {
    max-width: 400px;
    width: 400px;
    margin: auto;
    background-color: white !important;
    box-shadow: 0 0 10px -2px #b9b9b9a1 !important;
    border-radius: 5px !important;
}

.login_page .icon,
.register_page .icon {
    width: 100%;
    padding: 30px;
}

.login_page .icon img,
.register_page .icon img {
    color: var(--second-color);
    width: 150px;
    height: 70px;
}

.login_page .title,
.register_page .title {
    color: black;
}

.login_page label,
.register_page label {
    color: black;
    font-size: 16px;
}

.login_page input,
.register_page input {
    border-radius: 3px !important;
    background-color: transparent;
    color: #444;
    border-color: #eee;
}

.login_page input::placeholder,
.register_page input::placeholder {
    color: #666;
}

.login_page button,
.register_page button {
    background-color: var(--second-color);
    color: white;
    border-radius: 3px;
}

.login_page p,
.register_page p {
    color: #999;
    font-size: 14px;
}

/* 
=====================================
========== login page end ===========
=====================================
 */


/* 
=====================================
============== navbar ===============
=====================================
 */

.navbar {
    background-color: var(--second-color) !important;
    width: 100%;
}

.navbar .navbar-brand {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar .navbar-brand .logo {
    height: fit-content;
    margin-right: 1rem;
}

.navbar .navbar-brand .logo img {
    position: relative;
    border-radius: 5px;
}

.navbar .navbar-brand .text {
    font-size: 12px;
    width: 100%;
    color: #000 !important;
}

.navbar .navbar-brand .column {
    align-content: center;
}

.navbar span {
    color: black;
    font-size: 18px;
}

.navbar .navbar-item {
    width: 100%;
}

.navbar .navbar-item .icon {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar .navbar-item .icon span {
    height: 3px;
    width: 20px;
    background-color: #111;
    border-radius: 5px;
    transition: ease-in .3s;
}

.navbar .navbar-item button:focus .icon span:nth-child(1) {
    transform: rotate(-45deg);
    position: relative;
    top: 5px;
}

.navbar .navbar-item button:focus .icon span:nth-child(2) {
    background-color: transparent;
}

.navbar .navbar-item button:focus .icon span:nth-child(3) {
    transform: rotate(45deg);
    position: relative;
    top: -5px;
}

.navbar .navbar-item .me {
    position: absolute;
    bottom: 1.5rem;
    padding: 10px;
    right: 5px;
    left: 5px;
    font-size: 10px;
    justify-items: center;
}

.navbar .notif-wrapper {
    position: relative;
}

.navbar .notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50%;
    z-index: 1;
}

.navbar .notif-shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0);
    }
}


.modal-card,
.modal-content {
    max-height: 100% !important;
}

.slidebar nav {
    background-color: var(--main-color) !important;
    height: 50px !important;
    display: flex;
    align-items: center;
    position: relative !important;
    border: none !important;
}

.slidebar.is-rtl {
    direction: rtl !important;
}

.slidebar .modal-content.is-sidebar-content {
    width: 70vw;
    max-width: 400px;

    position: fixed;
    top: 0;
    right: 0;
    margin: 0;

    height: 100vh;
    border-radius: 0;
    background-color: #fff !important;
    z-index: 2001;
    box-shadow: inset 0 0 10px 1px #444;

    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slidebar.is-active .modal-content.is-sidebar-content {
    transform: translateX(0);
}

.slidebar .modal-background {
    background-color: rgba(0, 0, 0, 0.5);
}

.slidebar .box {
    background-color: #fff;
    box-shadow: inset 0 0 10px 0 #999;
    border-radius: 5px;
}

.slidebar .menu-list li a {
    background-color: #fff;
    border-radius: 0px;
    color: #111;
    font-weight: bold;
    border-bottom: #111 1px solid;
}

.slidebar .menu-list li a:hover {
    background-color: var(--hover-color);
    color: #111;
}

.slidebar button {
    color: #111;
    background-color: var(--second-color);
    border-radius: 5px !important;
}

.slidebar button:hover {
    background-color: var(--hover-color);
}

/* 
=====================================
============ navbar end =============
=====================================
 */



/* 
=====================================
============= requests ==============
=====================================
 */

.panel_section {
    height: 90%;
    overflow-y: scroll;
    position: relative;
    /* overflow: hidden; */
}

.panel_section::-webkit-scrollbar {
    display: none;
}

.panel_section .requests_page h4,
.panel_section .requests_detail_page h4,
.panel_section .new_request_page h4 {
    color: black;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--hover-color);
    padding: 10px;
}

.panel_section .requests_page ul {
    width: 100%;
}

.panel_section .requests_page ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: black;
    border-bottom: 1px solid black;
    font-size: 12px;
}


.panel_section .requests_page ul li img {
    width: 50px;
    border-radius: 5px;
    margin-left: 10px;
}

.panel_section .requests_detail_page table {
    background-color: #eee;
    margin-bottom: 0px !important;
}


.panel_section .requests_detail_page table button {
    width: 50px;
    height: 25px;
    font-size: 12px;
    margin: 5px 5px;
}

.panel_section .requests_detail_page table td {
    font-size: 14px;
    align-content: center;
}

.panel_section .requests_detail_page table td span {
    width: 350px;
    overflow-x: scroll;
    scrollbar-color: var(--second-color);
    display: block;

}

.panel_section .requests_detail_page table td span::-webkit-scrollbar-track {
    display: none;
    background-color: #e07008;
    scrollbar-color: var(--second-color);
}

.panel_section .requests_detail_page .more_sec {
    display: none;
}

.panel_section .requests_detail_page .more_sec button {
    width: 50px;
    height: 25px;
    font-size: 12px;
    margin: 5px 5px;
}

.panel_section .requests_detail_page .more_sec.is-active {
    display: block;
    background-color: #eee;
}

.panel_section .requests_detail_page .more_sec h4 {
    background-color: #e070085e;
    color: black;
    font-size: 18px;
    padding: 10px;
}

.panel_section .more_sec .search {
    background-color: white !important;
    color: black;
    border-radius: none !important;
}

.panel_section .more_sec select {
    background-color: white;
    color: #000;
    font-family: var(--bold-font);
}

.panel_section .more_sec .search::placeholder {
    color: #666;
}

.panel_section .new_request_page form {
    width: 100%;
}

.panel_section .new_request_page form label {
    font-size: 14px;
    color: #111;
}


.panel_section .new_request_page table th {
    background-color: var(--hover-color) !important;

}


.panel_section .new_request_page table td {
    background-color: white !important;
    color: #000;
}

.panel_section .new_request_page form input,
.panel_section .new_request_page form textarea,
.panel_section .new_request_page form select {
    background-color: transparent;
    color: #111;
    font-family: var(--bold-font);
}

.panel_section .new_request_page form input::placeholder,
.panel_section .new_request_page form textarea::placeholder {
    color: #999;
}

.navbar-link:not(.is-arrowless):after,
.select:not(.is-multiple):not(.is-loading):after {
    border: .125em solid var(--second-color) !important;
    border-right: 0 !important;
    border-top: 0 !important;
}

.datepicker-dialog {
    margin: auto;
}


.fancy-requests h4 {
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.fancy-requests .field.is-grouped {
    gap: 12px;
}

.fancy-requests .input {
    border-radius: 5px;
    border: 1px solid #1b1b1b;
    transition: all 0.25s ease;
    background-color: transparent;
    font-size: 14px;
    color: black;
    font-family: var(--bold-font);
    height: -webkit-fill-available;
}

.fancy-requests .select {
    width: 100% !important;
}

.fancy-requests select {
    background-color: white !important;
    color: #000 !important;
    font-family: var(--bold-font);

    width: 100% !important;
}

.fancy-requests .input::placeholder {
    color: #666;
    font-family: var(--bold-font);
}

.fancy-requests .input:focus {
    border-color: var(--second-color);
    box-shadow: 0 0 0 3px #e0700842;
}

.fancy-requests table {
    border-radius: 0px;
    overflow: hidden;
}

.fancy-requests .rmdp-container {
    width: 100%;
    height: -webkit-fill-available !important;

}

.rmdp-day.rmdp-selected span:not(.highlight) {
    background-color: var(--second-color) !important;
}

.rmdp-day.rmdp-today span:hover {
    background-color: var(--hover-color) !important;
}

.rmdp-week-day {
    color: var(--second-color) !important;
}

.rmdp-day.rmdp-today span {
    background-color: var(--hover-color) !important;
}

.fancy-requests thead {
    background: linear-gradient(135deg, var(--second-color), var(--hover-color));
}

.fancy-requests .pagination-next,
.fancy-requests .pagination-previous {
    background-color: var(--second-color);
    color: #000;
}

.fancy-requests thead th {
    color: black;
    font-weight: 700;
    background-color: transparent;
    text-align: center;
    font-size: 13px;
}

.fancy-requests tbody td {
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
    color: #000;
    background-color: rgb(241, 241, 241) !important;
}

.fancy-requests tbody tr {
    transition: background 0.2s ease, transform 0.2s ease;
}

.fancy-requests tbody tr:hover {
    background: #f1f5f9;
    transform: scale(1.005);
}

.fancy-requests .tag {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.fancy-requests .button.is-link {
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 12px;
}

.fancy-requests .button {
    border-radius: 5px !important;
    color: white;
}

.fancy-requests .pagination-link.is-current {
    background: #009c27;
    border-color: #04ac2e;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.req_modal .modal-card-custom {
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


.req_modal .modal-card-body {
    background-color: #f9f9f9;
}

.req_modal .detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px 20px;
    color: #000;
    font-size: 14px;
}

.req_modal .detail-grid div strong {
    color: #000;
}

.req_modal .detail-grid div:first-child {
    font-weight: 600;
    color: #363636;
}

.req_modal .detail-grid div:last-child {
    color: #363636;
}

.req_modal .modal-card-head {
    border-bottom: none;
    color: #000 !important;
    background-color: var(--second-color) !important;
}

.req_modal .modal-card-foot {
    justify-content: flex-end;
    background-color: white !important;
}

.req_modal .modal-card-foot button {
    background-color: #009c27;
    color: white;
}



.requests_detail_page .request-card strong {
    color: #000 !important;
}

.requests_detail_page .request-card {
    background-color: #f3f3f3;
}

.requests_detail_page .request-card .detail div {
    color: #727272;
}

.requests_detail_page .request-card .buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.requests_detail_page .request-card .buttons .button {
    width: 200px;
}

/* 
=====================================
=========== requests end ============
=====================================
 */

/* 
=====================================
============= settings ==============
=====================================
 */

.settings-card {
    justify-items: center;
    width: 100%;
}

.settings-card h4 {
    color: black;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--hover-color);
    padding: 10px;
    width: 100%;
}

.settings-card form {
    width: 500px;
    max-width: 500px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.settings-card .field-label {
    font-weight: bold;
    color: #000;
    font-size: 14px;
}

.settings-card input {
    background-color: transparent;
    color: #000;
}

.settings-card input::placeholder {
    color: #999;
}

.settings-card .icon-input {
    width: 2.5rem;
    text-align: center;
}

.settings-card .has-icon-right {
    position: relative;
}

.settings-card .has-icon-right .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
}

/* 
=====================================
=========== settings end ============
=====================================
 */


/* 
=====================================
=========== newemployee =============
=====================================
 */

.newemployee_page form label {
    font-size: 14px;
    color: #000;
}

.newemployee_page form input,
.newemployee_page form select {
    color: #000;
    font-family: var(--bold-font);
    background-color: transparent;
}

.newemployee_page form input::placeholder {
    color: #999;
}


.newemployee_page .upload-box {
    border: 2px dashed #ccc;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    transition: 0.3s;
}

.newemployee_page .upload-box:hover {
    background-color: #f0f0f0;
}

.newemployee_page .upload-box {
    /* border: 1px solid black !important; */
}

.newemployee_page .upload-box p {
    font-size: 12px;
    color: #999;
}

.newemployee_page .upload-box img {
    height: 60px;
    width: 60px;
    border-radius: 5px;
}

.newemployee_page .plus {
    font-size: 2rem;
    font-weight: bold;
    color: #666;
}

.newemployee_page .buttons {
    justify-content: center;
    width: 100%;
}

#edit-section {
    background-color: #f0f0f0 !important;
    width: 100% !important;
    color: #000;
}

#edit-section h5 {
    background-color: var(--hover-color);
    color: #000;
    padding: 1rem 10px;
    font-weight: bold;
    font-size: 18px;
}

.employee_page .search {
    width: 100%;
    color: #000;
    background-color: white;
}

.employee_page select {
    background-color: white !important;
    color: #000 !important;
    font-family: var(--bold-font);
}

.employee_page .search::placeholder {
    color: #363636;
}

.employee_page .notification {
    width: 100%;
    padding: 10px;
}

.employee_page table th {
    background-color: var(--second-color);
    color: #000 !important;
}

.employee_page table td {
    background-color: #eee;
    color: #000 !important;
}

#edit-section input {
    background-color: white;
    color: #000;
    font-family: var(--medium-font);
}

#edit-section select {
    color: #000;
    background-color: white;
    font-family: var(--medium-font);

}

#edit-section label {
    font-size: 14px;
    color: #000;
}

/* 
=====================================
========= newemployee end ===========
=====================================
 */

/* 
=====================================
======= profile edit page  ==========
=====================================
 */

.profile_edit_page .box {
    width: 100% !important;
    background-color: #fff;
    box-shadow: #d4d4d4 0 0 5px 1px;
    border-radius: 0px !important;
}

.profile_edit_page .box button {
    color: #000;
}

.profile_edit_page label {
    color: #000;
}

.profile_edit_page input {
    background-color: white;
    border: 1px solid #ccc;
    color: #000;
    font-family: var(--bold-font);
}

.profile_edit_page input:focus {
    box-shadow: 0 0 5px 1px var(--hover-color);
    border: 1px solid var(--second-color);
}

.profile_edit_page input::placeholder {
    color: #7a7a7a;
}


/* 
=====================================
====== profile edit page end ========
=====================================
 */


.loading-wrapper {
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coder-svg {
    animation: float 2.5s ease-in-out infinite;
}

.code-line {
    opacity: 0;
}

.l1 {
    animation: blink 1.5s infinite;
}

.l2 {
    animation: blink 1.5s infinite 0.3s;
}

.l3 {
    animation: blink 1.5s infinite 0.6s;
}

.loading-text {
    margin-top: 16px;
    font-size: 14px;
    color: #000 !important;
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-down {
    animation: slideDown 1s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}



@media screen and (min-width: 1024px) {
    .container.is-fluid {
        max-width: 600px;
        margin: 4rem auto;
        padding: 2rem;
    }

    .slidebar .modal-content.is-sidebar-content {
        width: 70vw;
        max-width: 400px;

        position: fixed;
        top: 0;
        right: 0;
        margin: 0;

        height: 100vh;
        border-radius: 0;
        background-color: #111;
        z-index: 2001;

        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@media screen and (max-width: 1024px) {
    .dashboard-card .image {
        width: 40px;
        height: 40px;
    }

    .dashboard-card figure {
        margin-bottom: 0px !important;
    }

    .dashboard-card p {
        font-size: 12px !important;
    }

    .dashboard-card {
        padding: 10px 5px !important;
    }

    .panel_section .requests_detail_page table td {
        align-content: center;
    }

    .panel_section .requests_detail_page table td span {
        width: 100px;
    }

    .panel_section .requests_detail_page table th {
        font-size: 14px;
    }

    .panel_section .requests_detail_page table td {
        font-size: 12px;
    }

    .panel_section .requests_page h4,
    .panel_section .requests_detail_page h4 {
        font-size: 16px;
    }

    .login_page,
    .register_page {
        max-width: 100%;
        width: 100%;
        margin: auto;
        background-color: white !important;
        box-shadow: 0 0 10px -2px #b9b9b9a1 !important;
        border-radius: 5px !important;
    }

    .slidebar button {
        font-size: 14px;
    }

    .slidebar .menu-list li a {
        font-size: 12px;
    }

    .navbar .navbar-item li a .icon {
        gap: 0px;
        width: auto;
    }

    .navbar .navbar-item li a .icon img {
        width: 24px;
    }

    .settings-card h4 {
        font-size: 16px;
    }

    .settings-card form {
        width: 100%;
        max-width: 500px;
    }

    .panel_section .status .stats-card {
        padding: 10px !important;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .panel_section .status .stats-card .title {
        font-size: 16px;
    }

    .panel_section .status .stats-card .subtitle {
        font-size: 11px;
        margin-top: 6px;
    }

    .panel_section .animations {
        margin-bottom: -30px;
    }

    .panel_section .animated-divider path,
    .panel_section .animated-divider2 path,
    .panel_section .animated-divider3 path {
        stroke-width: 2;
        stroke-dasharray: 1200;
        stroke-dashoffset: -1200;
    }

    .panel_section .animated-divider2 path {
        stroke-width: 2;
        stroke-dasharray: 1200;
        stroke-dashoffset: 1200;
    }

    .newemployee_page .upload-box {
        width: 300px;
    }

    .more_info_sec {
        display: flex;
        align-items: center;
        width: 100vw;
        padding-right: 10px;
    }

    .panel_section .status {
        padding: 1rem 10px;
    }

    .panel_section .status .more_info span {
        font-size: 12px;
    }

    .employee_page table td {
        font-size: 10px;
        align-content: center;
    }

    .employee_page table .button {
        font-size: 12px;
    }

    .fancy-requests tbody td {
        font-size: 10px;
    }

    .fancy-requests .column {
        padding: 0px 10px !important;
    }

    .back_button {
        display: block !important;
        position: fixed !important;
        bottom: 0;
        width: 100%;
        background-color: var(--second-color) !important;
        color: #000 !important;
        font-size: 16px !important;
        border-radius: 0 !important;
    }

    .requests_detail_page .request-card {
        justify-items: center;
    }

    .requests_detail_page .request-card .buttons {
        width: 100%;
    }

    .requests_detail_page .request-card .buttons .button {
        width: 100%;
    }

    .employee_page .column {
        width: 100%;
    }

    .navbar .navbar-brand .logo {
        margin-right: 2rem;
    }

}






/* for iphone */

@supports (-webkit-overflow-scrolling: touch) {

    html,
    body {
        overflow-x: hidden !important;

        position: relative;
        width: 100vw;
    }

    .columns,
    .column,
    .container {
        max-width: 100% !important;
        box-sizing: border-box;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    .columns {
        width: 100vw;
        justify-items: center;
        padding-right: 25px !important;
        padding-left: 0 !important;
    }

    .panel_section .animated-divider path,
    .panel_section .animated-divider3 path {
        stroke-width: 2;
        stroke-dasharray: -1200;
        stroke-dashoffset: 1200;
    }

    .panel_section .animated-divider2 path {
        stroke-width: 2;
        stroke-dasharray: -1200;
        stroke-dashoffset: 1200;
    }

    .panel_section .status {
        width: 100%;
        position: relative;
        right: 14px;
        padding-left: 1rem !important;
    }

    .panel_section .cardd {
        position: relative;
        right: 10px;
        background-color: transparent;
    }

    .fancy-requests {
        width: 100%;
    }

    .all_req {
        padding-right: 12px;
    }

    .navbar .navbar-brand .button {
        position: relative;
        left: 1rem;
    }

    .navbar .navbar-brand .logo {
        margin-right: 1rem;
    }

    .slidebar button {
        position: relative;
        right: 1px;
    }

    .navbar .navbar-item .me {
        position: absolute;
        right: 20px !important;
    }
    
    .fancy-requests {
        margin-bottom: 5rem !important;
    }

    .fancy-requests .input {
        height: auto;
    }

    .fancy-requests .all_req {
        height: 130px;
    }

    .fancy-requests .select {
        position: relative;
        margin-top: -6rem;
    }

    .employee_page .container {
        margin-bottom: 5rem !important;
    }
}
.parhamavatar{
    width: 4rem;
    height: 4rem !important;
    max-height : none !important;
    object-fit: cover ;
    border-radius:100%;
    border: 2px solid #dbdbdb;
    padding : 0.5rem;
}