            @font-face {
            font-family: 'bahij-naseem';
            src: url('/assets/fonts/Bahij Nassim-Regular.ttf');
        }
        
        @font-face {
            font-family: 'bahij-zar';
            src: url('/assets/fonts/Bahij Zar-Regular.ttf');
        }
        /* For Navigation and top header  */
        
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: 'bahij-naseem', 'bahij-zar';
        }
        
        body {
            background-color: #f8f9fa;
            font-family: 'bahij-naseem', 'bahij-zar';
        }
        
        .light-mode {
            background-color: #f0f0f0;
            color: #333;
            min-height: 100vh;
        }
        /* .dark-mode form,table,div{
    background-color: #143601;
    color: #f0f0f0;
} */
        
        .dark-mode {
            background-color: #143601;
            color: #f0f0f0;
        }
        
        .dashboard-body {
            min-height: 100vh;
        }
        main{
            min-height: calc(100vh - 60px) !important;
            background-color:navy !important;
        }
        
        .dashboard-header-container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 60px;
            background-color: #226f54;
            color: #f0f0f0;
            min-width: 100vw;
            padding: 0px 25px;
        }
        
        .dashboard-header-right-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .dashboard-header-right-content .dashboard-sidebar-btn #sidebar-btn {
            font-size: 1.25rem;
            border: none;
            background-color: #f0f0f0f0;
            color: black;
            padding: 6px 12px;
            border-radius: 6px;
            transition: color 0.3s ease;
        }
        
        .dashboard-sidebar-btn #sidebar-btn:hover {
            background-color: #fff;
        }
        
        .dashboard-title h1 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .dashboard-header-left-content {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
        }
        
        .profile-text {
            display: flex;
            flex-direction: column;
        }
        
        .dashboard-profile-image img {
            height: 45px;
            width: 45px;
            border-radius: 50%;
            margin-top: 8px;
        }
        
        .profile-text {
            display: flex;
            flex-direction: column;
        }
        
        .profile-text .profile-person-name,
        .profile-sm-text .profile-sm-person-name {
            line-height: 1rem;
        }
        
        .profile-text .profile-person-role,
        .profile-sm-text .profile-sm-person-name {
            line-height: 14px;
        }
        
        .has-submenu .sidebar-sub-menu {
            display: none;
            padding-left: 10px;
        }
        
        .has-submenu.active .sidebar-sub-menu {
            display: block;
        }
        
        .sidebar-menu-container {
            display: none;
            position: absolute;
            height: 150vh;
            top: 0;
            right: 0;
            bottom: 0;
            width: 250px;
            z-index: 100;
            direction: rtl;
            background-color: #226f54;
            transition: all 0.5s ease;
        }
        
        .sidebar-menu-header {
            display: flex;
            gap: 100px;
            margin: 15px 22px;
        }
        
        .sidebar-menu-logo img {
            height: 80px;
            width: 80px;
        }
        
        .sidebar-menu-cancel {
            margin-top: 20px;
        }
        
        .sidebar-menu-cancel button {
            background-color: transparent;
            border: none;
            color: #f0f0f0;
            font-size: 1.5rem;
        }
        
        .sidebar-menu-links .link-item {
            line-height: 50px;
            border-top: 1px solid rgba(255, 255, 255, .5);
            border-bottom: 1px solid black;
            margin-left: 6px;
            font-size: 1.25rem;
            position: relative;
        }
        
        .sidebar-menu-links a {
            text-decoration: none;
            display: block;
            color: #f0f0f0;
        }
        
        .sidebar-menu-links .link-item .sidebar-main-link {
            padding-right: 16px;
            display: flex;
            justify-content: space-between;
            transition: color 0.3s ease;
        }
        
        .sidebar-menu-links .link-item .sidebar-main-link:hover {
            background-color: #104911;
        }
        
        .angle-icon {
            margin-left: 16px;
        }
        
        .rotate-icon {
            transform: rotate(-90deg);
            transition: transform 0.3s ease;
        }
        
        .sidebar-sub-menu {
            background-color: #49a078;
            margin: 2px 0px;
            padding: 0px;
            display: none;
            transition: all 0.3s ease;
        }
        
        .sidebar-sub-menu a {
            padding: 0px 24px;
            line-height: 36px;
            border-bottom: 1px solid gray;
            width: 100%;
            transition: font-weight 0.1s ease;
            font-size: 1rem;
        }
        
        .sidebar-sub-menu a:hover {
            font-weight: 600;
            color: white;
        }
        /* small screen profile section styling */
        
        .profile-info {
            direction: rtl;
            width: 180px;
            background-color: #00b4d4;
            border-radius: 6px;
            position: absolute;
            top: 64px;
            left: 2px;
            display: none;
        }
        
        .profile-info a {
            text-decoration: none;
        }
        
        .profile-sm {
            display: none;
            align-items: center;
            gap: 8px;
            padding: 6px 8px 0px 8px;
            border-bottom: 1px solid gray;
        }
        
        .profile-sm-image img {
            height: 50px;
            width: 50px;
            border-radius: 50%;
        }
        
        .profile-sm-link {
            display: block;
            line-height: 40px;
            padding: 0px 12px;
            transition: color 0.3s ease;
        }
        
        .profile-sm-link:hover {
            background-color: #02a2be;
        }
        
        .profile-sm-link-icon {
            font-size: 1.25rem;
            font-weight: 600;
            margin-left: 4px;
            padding-top: 8px;
        }
        /* url address */
        
        .dashboard-second-row {
            direction: rtl;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0px 25px;
            height: 40px;
            background-color: #49a078;
        }
        
        .dashboard-theme {
            width: 30px;
            height: 30px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }
        
        .dashboard-theme:hover {
            background-color: #fff;
        }
        
        .dashboard-second-row p {
            padding-top: 12px;
            padding-right: 60px;
            color: #f0f0f0;
        }
        
        .dashboard-body {
            height: 100vh;
        }
        /* Dashboard Break-points */
        
        @media (max-width:768px) {
            .dashboard-second-row p {
                padding-right: 30px;
            }
        }
        
        @media (max-width:800px) {
            .dashboard-header-left-content .profile-text {
                display: none;
            }
            @media (max-width:600px) {
                .dashboard-header-container {
                    padding: 0px 8px;
                }
                .dashboard-header-right-content {
                    gap: 6px;
                }
                .dashboard-header-right-content .dashboard-title h1 {
                    font-size: 1rem;
                    font-weight: 600;
                }
                .dashboard-header-left-content .dashboard-profile-image img {
                    height: 40px;
                    width: 40px;
                }
                .profile-sm {
                    display: flex;
                }
                .dashboard-second-row p {
                    padding-right: 5px;
                }
                .profile-info {
                    left: 0;
                }
            }
            @media (max-width:400px) {
                .profile-info {
                    width: 100%;
                }
                .sidebar-menu-container {
                    width: 100vw;
                }
                .sidebar-menu-header {
                    display: flex;
                    justify-content: space-between;
                }
            }
            /* dashboard body styling */
            .dashboard-body {
                min-height: calc(100vh - 100px);
            }
            /* validation using Parsley.js */
            .parsley-error {
                border-color: red;
                /* list-style-type: none; */
            }
            .parsley-errors-list {
                list-style: none;
                /* Removes the dot */
                padding: 0;
                /* Removes extra padding */
                margin: 0;
                /* Removes extra margin */
                color: red;
            }
            .parsley-success {
                border-color: green;
            }
            .btn-sm {
                padding: 0.25rem 0.5rem;
                /* Consistent padding */
                line-height: 1.5;
                /* Vertical alignment */
                font-size: 0.875rem;
                /* Adjust for small buttons */
            }
            td a.btn {
                display: inline-flex;
                /* Ensures inline-block alignment */
                align-items: center;
                /* Centers content vertically */
                justify-content: center;
                /* Centers content horizontally */
            }
            /* employee section  */
            .top-side {
                margin: 10px 0;
                background-color: rgb(52, 122, 234);
                padding: 5px 3px;
                color: white;
            }
            .body-side ul {
                padding: 0px;
            }
            .body-side ul li {
                padding: 5px 2px;
                list-style-type: none;
                padding: 0px;
            }
            .body-side ul li:hover {
                padding: 5px 2px;
                background-color: rgb(52, 122, 234);
                color: white;
            }
            .body-side ul li a {
                text-decoration: none;
            }
            .body-side ul li a:hover {
                color: white;
                text-decoration: none;
            }
            /* General Table Styles */
            .custom-table {
                text-align: center;
                width: 100%;
                border-collapse: collapse;
                background-color: #f9f9f9;
                border: 1px solid #a8a8a8;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
            }
            .custom-table tr th,
            .custom-table tr td {
                border: 1px solid #ddd;
                padding: 4px;
            }
            /* Even Rows */
            .custom-table tbody tr:nth-child(even) {
                background-color: #d1e7dd/* Light grey for even rows */
            }
            /* Odd Rows */
            .custom-table tbody tr:nth-child(odd) {
                background-color: #ffff;
                /* White for odd rows */
            }
            /* Hover Effect for Rows */
            .custom-table tbody tr:hover {
                background-color: #e8f5e9;
                /* Light green on hover */
            }
            .custom-table-hover tbody tr:hover {
                background-color: #e8f5e9;
                /* Light green on hover */
            }
            .custom-table-header-colorful thead tr th {
                background-color: #226f54;
                color: #f0f0f0;
            }
            .custom-hover-btn {
                opacity: 0.92;
                transition: opacity 0.3s;
            }
            .custom-hover-btn:hover {
                opacity: 1;
            }