﻿

.item-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.textnametop {
    font-weight: 400;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px;
    text-align: center;
    margin-top: 10px;
    background: none;
}

.imageuser {
    float: right;
}

.divimauser {
    text-align: right;
}

.req-lb:after {
    content: " * ";
    font-weight: bold;
    color: red;
}

.form2 {
    min-height: 94.2vh
}

.bodycont {
    padding-right: 5px !important
}

.buttontop {
    font-weight: 400;
}

.textdate {
    font-weight: 500;
    padding: 4px;
    margin-right: 0;
}

.textnammenu {
    font-weight: 400;
}

.menu_list1 {
    font-weight: 400 !important;
}

@media only screen and (max-width:1200px) {
    .imageuser {
        width: 100%;
        float: none;
        margin-right: auto;
        margin-left: auto;
        margin-top: 10px;
        margin-bottom: 0px
    }

    .divimauser {
        text-align: center;
    }

    .contentbody {
        padding-right: 0px !important;
    }

    .buttontop {
        width: 30%;
    }

    .imageuser {
        float: right;
        width: 15%
    }

    .textnametop {
        text-align: right;
        float: right;
        width: 70%
    }

    .Timer {
        width: 18%;
        padding-top: 7px;
        padding-left: 5px;
    }

    .divimauser {
        width: 80%;
        float: right
    }

    .form2 {
        min-height: 94vh
    }

    .bodycont {
        padding-right: 0px !important;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f0f5f7;
    color: var(--dark);
    min-height: 100vh;
    overflow: hidden;
}


.sidebar {
    width: var(--sidebar-width);
    background: #fff;
    color: var(--dark);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0,0,0,.05);
    border-left: 1px solid var(--light-gray);
    overflow: hidden;
    transition: var(--transition);
}


.sidebar-scroll {
    height: 100%;
    overflow-y: auto;
    padding-bottom: 14px;
    background: #fff;
}

    .sidebar-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .sidebar-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-light);
        border-radius: 10px;
    }

        .sidebar-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }


.main-content {
    position: absolute;
    top: 0;
    left: 0;
    right: var(--sidebar-width);
    bottom: 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
}


.top-header {
    height: var(--topbar-height);
    background: var(--primary-dark);
    padding: 0.7rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0,0,0,.10);
    gap: 10px;
}


.dashboard-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.0rem;
    background-color: #f0f2f5;
    overflow-x: hidden;
}

    .dashboard-content::-webkit-scrollbar {
        width: 10px;
    }

    .dashboard-content::-webkit-scrollbar-track {
        background: #edf2f7;
    }

    .dashboard-content::-webkit-scrollbar-thumb {
        background: rgba(4,139,121,.35);
        border-radius: 10px;
        border: 3px solid #edf2f7;
    }

        .dashboard-content::-webkit-scrollbar-thumb:hover {
            background: rgba(4,139,121,.55);
        }

.sidebar-header {
    padding: 1rem 1.1rem .8rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: .5rem;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--menu-surface);
}

.logo-container {
    display: flex;
    gap: 12px;
    margin-bottom: .2rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(4,139,121,.2);
}

    .logo-icon i {
        font-size: 1.6rem;
        color: #fff;
    }

.system-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-top: 7px;
}

.sidebar-section {
    padding: .30rem 0;
}

    .sidebar-section:last-child {
        border-bottom: none;
    }

.sidebar-title {
    padding: .50rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--menu-surface);
    margin: 0 .65rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--mint-border);
    box-shadow: 0 8px 20px rgba(15,23,42,.04);
    user-select: none;
}

    .sidebar-title:hover {
        background: var(--mint-surface);
        border-color: var(--primary);
        transform: translateY(-1px);
    }

.title-content {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

    .title-content i {
        color: var(--primary-dark);
        font-size: 1.05rem;
        width: 22px;
        text-align: center;
        flex: 0 0 auto;
    }

.sidebar-title span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.collapse-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-surface);
    color: var(--primary-dark);
    transition: var(--transition);
    flex: 0 0 auto;
}

.sidebar-section.open .collapse-icon {
    transform: rotate(180deg);
}

.sidebar-menu {
    list-style: none;
    padding: .35rem .65rem 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
}

.sidebar-section.collapsed .sidebar-menu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.sidebar-menu li a {
    padding: 0.5rem 1.0rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    position: relative;
    border-radius: 0px;
    background: transparent;
    font-weight: 700;
    user-select: none;
    border-bottom: 1px solid var(--mint-border2);
    font-size: 13px;
}


.sidebar-menu li i {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-surface);
    color: var(--primary-dark);
    font-size: 13px;
    flex: 0 0 auto;
}

.sidebar-menu li:hover {
    background: var(--mint-surface);
    border-color: var(--mint-border);
}

.sidebar-menu li.active {
    background: var(--mint-surface-2);
    border-color: #fff;
    box-shadow: 0 10px 22px rgba(15,23,42,.05);
    color: var(--primary-dark);
    font-weight: 800;
}

   /* .sidebar-menu li.active::after {
        content: "";
        position: absolute;
        right: 8px;
        top: 10px;
        bottom: 10px;
        width: 4px;
        border-radius: 999px;
        background: var(--primary);
    }*/


.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.header-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid rgba(255,255,255,.45);
    flex: 0 0 auto;
}



.header-system-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 15vw;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.header-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-width: 0;
}

.action-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 38px;
    border-radius: 12px;
    transition: var(--transition);
    padding: 0 10px
}

    .action-item i {
        font-size: 1.05rem;
        color: rgba(255,255,255,.92);
    }



.action-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--danger);
    color: #fff;
    border-radius: 999px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    border: 2px solid var(--primary-dark);
}

.subscription-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--mint-border);
    border: 1px solid rgba(255,255,255,.16);
    padding: .45rem .85rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
}

    .subscription-status i {
        color: #a5f3fc;
    }

.datetime-display {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    padding: .45rem 1rem;
    border-radius: 999px;
    gap: 8px;
    min-width: auto;
    font-size: .88rem;
    white-space: nowrap;
    color: rgba(255,255,255,.88);
}

.current-time {
    font-weight: 800;
    color: #fff;
}

.current-date {
    color: rgba(255,255,255,.88);
    display: flex;
    gap: 4px;
}

.date-separator {
    margin: 0 4px;
    opacity: .85;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    color: #fff;
    padding: .45rem .9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid rgba(255,255,255,.16);
    white-space: nowrap;
}

    .user-profile-container:hover {
        background: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0,0,0,.12);
    }

.user-profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    border: 2px solid rgba(255,255,255,.45);
    flex: 0 0 auto;
}

    .user-profile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dropdown-icon {
    transition: var(--transition);
}

.user-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu2 a {
    text-decoration: none !important;
}

.dropdown-menu2 {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    min-width: 190px;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
    border-radius: 14px;
    padding: 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.user-dropdown:hover .dropdown-menu2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1000
}

.dropdown-item2 {
    padding: .65rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
}

    .dropdown-item2:hover {
        background: var(--mint-surface);
        color: var(--primary-dark);
    }

    .dropdown-item2 i {
        width: 20px;
        text-align: center;
        color: var(--primary);
    }








.welcome-banner {
    background: var(--mint-surface-2);
    border-radius: 22px;
    padding: 2.2rem 2rem;
    margin-bottom: 1.4rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--mint-border);
    box-shadow: 0 12px 30px var(--card-shadow);
    background-image: radial-gradient(circle at 90% 10%, rgba(4,139,121,.06) 0%, transparent 22%), radial-gradient(circle at 10% 90%, rgba(4,139,121,.06) 0%, transparent 25%);
}

.welcome-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: .8rem;
    color: var(--primary-dark);
    text-align: center;
    position: relative;
    z-index: 2;
}

.welcome-text {
    font-size: 1rem;
    max-width: 760px;
    color: var(--gray);
    text-align: center;
    line-height: 1.8;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.corner-decoration {
    position: absolute;
    width: 44px;
    height: 44px;
    z-index: 1;
    opacity: .9;
}

.corner-top-right {
    top: 14px;
    right: 14px;
    border-top: 3px solid var(--primary-light);
    border-right: 3px solid var(--primary-light);
    border-top-right-radius: 18px;
}

.corner-bottom-left {
    bottom: 14px;
    left: 14px;
    border-bottom: 3px solid var(--primary-light);
    border-left: 3px solid var(--primary-light);
    border-bottom-left-radius: 18px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
    gap: 10px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

    .card-title i {
        color: var(--primary);
        font-size: 1.1rem;
    }

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin-top: 1.2rem;
}

.heading {
    background: var(--mint-surface-2);
    border: 1px solid var( --mint-border-strong);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
    align-items: center;
    box-shadow: 0 10px 22px rgba(15,23,42,.04);
    margin: 5px;
}

    .heading:hover {
        background: var(--mint-surface);
        border-color: var(--primary);
    }

    .heading.strId {
        background: var(--mint-surface);
        border: 2px solid var(--primary);
        box-shadow: 0 0 0 4px var(--mint-surface);
        transform: translateY(-4px);
    }

    .heading a {
        color: #414141 !important;
        text-decoration: none !important;
    }

.permission-title {
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: .4rem;
    font-size: 1rem;
}

.permission-desc {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.5;
    font-weight: 700;
}


.activity-list {
    list-style: none;
}

.activity-item {
    padding: .9rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border-radius: 12px;
}

    .activity-item:hover {
        background: rgba(4,139,121,.05);
    }

    .activity-item:last-child {
        border-bottom: none;
    }

.activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(4,139,121,.10);
    color: var(--primary);
    flex: 0 0 auto;
}

.activity-info {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-weight: 900;
    margin-bottom: 4px;
    font-size: .95rem;
    color: var(--dark);
}

.activity-time {
    font-size: .8rem;
    color: var(--gray);
    font-weight: 700;
}


.main-footer {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 1rem 1.2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 12px;
}

.copyright {
    opacity: .9;
    font-size: .9rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-links a {
        color: #fff;
        text-decoration: none;
        opacity: .9;
        transition: var(--transition);
        font-size: .85rem;
        font-weight: 700;
    }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }


.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

    .menu-toggle:hover {
        background: rgba(255,255,255,.16);
        transform: translateY(-1px);
    }



@media (max-width: 992px) {
    :root {
        --sidebar-width: 86px;
    }

    .sidebar-title span,
    .sidebar-menu li span,
    .system-name {
        display: none;
    }

    .logo-container {
        gap: 0;
    }

    .main-content {
        right: var(--sidebar-width);
    }

    .datetime-display {
        min-width: 260px;
    }

    .permissions-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .datetime-display {
        display: none;
    }
}


@media (max-width: 768px) {
    :root {
        --sidebar-width: 250px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-content {
        right: 0;
    }

    .sidebar {
        transform: translateX(110%);
        box-shadow: -10px 0 30px rgba(0,0,0,.18);
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }


    body.sidebar-open .overlaymenu {
        opacity: 1;
        visibility: visible;
    }


    .sidebar-title span,
    .sidebar-menu li span,
    .system-name {
        display: inline;
    }

    .sidebar-title {
        margin: 0 .8rem;
    }

    .dashboard-content {
        padding: 1.1rem;
    }

    .top-header {
        flex-wrap: wrap;
        gap: .6rem;
        height: auto;
        padding: .8rem;
    }

    .header-system-name {
        max-width: 72vw;
    }

    .datetime-display {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .header-item {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .permissions-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .footer-content {
        flex-direction: column;
        gap: .7rem;
    }



    .user-profile-container {
        padding: .45rem .55rem;
    }
}

@media (max-width: 480px) {
    .permissions-grid {
        grid-template-columns: 100%;
    }

    .welcome-banner {
        padding: 1.4rem 1.2rem;
    }

    .welcome-title {
        font-size: 1.4rem;
    }

    .subscription-status span {
        display: none;
    }
}


:root {
    --fs-xs: 12.5px;
    --fs-sm: 13.5px;
    --fs-md: 14.5px;
    --fs-lg: 16px;
    --fs-xl: 18px;
    --fs-2xl: 20px;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --lh-tight: 1.35;
    --lh-normal: 1.6;
    --lh-loose: 1.8;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    font-weight: var(--fw-regular);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.system-name {
    font-size: 18px;
    font-weight: var(--fw-bold);
}

.sidebar-title {
    font-size: 15px;
    font-weight: var(--fw-semibold);
}

    .sidebar-title i {
        font-size: 15px;
    }

.sidebar-menu li {
    font-size: 14px;
    font-weight: var(--fw-medium);
    line-height: var(--lh-tight);
}

    .sidebar-menu li span {
        font-weight: inherit;
    }

    .sidebar-menu li.active {
        font-weight: var(--fw-semibold);
    }


.header-system-name {
    font-size: 16px;
    font-weight: var(--fw-bold);
}

.subscription-status {
    font-size: 13px;
    font-weight: var(--fw-medium);
}

.datetime-display {
    font-size: 13px;
    font-weight: var(--fw-medium);
}

.current-time {
    font-weight: var(--fw-semibold);
}

.user-profile-container {
    font-size: 13.5px;
    font-weight: var(--fw-medium);
}

.dropdown-item2 {
    font-size: 13.5px;
    font-weight: var(--fw-medium);
}


.welcome-title {
    font-size: 22px;
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
}

.welcome-text {
    font-size: 14.5px;
    font-weight: var(--fw-regular);
    line-height: var(--lh-loose);
}


.card-title {
    font-size: 18px;
    font-weight: var(--fw-bold);
}

.permission-title {
    font-size: 15px;
    font-weight: var(--fw-semibold);
}

.permission-desc {
    font-size: 12.8px;
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
}

.activity-title {
    font-size: 14.5px;
    font-weight: var(--fw-semibold);
}

.activity-time {
    font-size: 12.8px;
    font-weight: var(--fw-regular);
}


.copyright {
    font-size: 13.5px;
    font-weight: var(--fw-regular);
}

.footer-links a {
    font-size: 13px;
    font-weight: var(--fw-regular);
}


@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .welcome-title {
        font-size: 18px;
    }

    .welcome-text {
        font-size: 14px;
    }

    .sidebar-title {
        font-size: 14.5px;
    }

    .sidebar-menu li {
        font-size: 14px;
    }

    .header-system-name {
        font-size: 15px;
    }

    .datetime-display {
        font-size: 12.8px;
        display: none;
    }
}


.sidebar-close {
    display: none;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(4,139,121,.25);
    background: rgba(4,139,121,.10);
    color: var(--primary-dark);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .sidebar-close i {
        font-size: 1.1rem;
    }

    .sidebar-close:hover {
        background: var(--mint-surface);
        transform: scale(1.05);
    }


@media (max-width: 768px) {
    .sidebar-close {
        display: flex;
    }
}



.costomdata {
    margin-right: 10px;
    padding: 4px 5px 4px 5px;
    font-size: 28px;
    text-align: center;
    color: #f6f6f6;
    cursor: pointer;
    height: 40px;
    width: 52px;
    margin-top: 7px;
    border: 1px solid #fff;
    border-radius: 6px
}

    .costomdata:hover {
        background: #d1d1d1;
    }

.iconcostom {
    font-size: 25px;
    color: #ffffff;
    margin-top: 2px;
}

.divn1 {
    background: #f0f5f7 !important;
    border-radius: 18px !important;
    box-shadow: var(--card-shadow) !important;
    padding: 2rem 2.5rem !important;
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid var(--light-gray) !important;
    margin-bottom: 15px;
}

    .divn1 .hedar-e, .divn2 {
        background-color: transparent !important;
        padding: 10px;
        margin: -10px -10px 15px -10px;
        height: auto !important;
        display: flex;
        border-bottom: 1px solid #bdbdbd;
    }


    .divn2 p, .p1 {
            font-size: 18px;
            font-weight: var(--fw-bold);
            color: var( --primary-dark) !important;
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            margin: 0 !important;
            padding: 2px 0;
        }

            .divn2 p, .p1 span {
                color: var(--primary) !important;
                margin-right: 5px;
            }

.table {
    border-collapse: separate !important;
    border-spacing: 0;
    font-size: 14px;
    overflow-x: auto;
}


    .table thead th,
    .table tr:first-child th,
    .hedar-graid th,
    .hedar-e1 th,
    .hedar-e1 {
        font-weight: 700 !important;
        font-size: 14px;
        text-align: center !important;
        vertical-align: middle !important;
        background: #f6f8fb !important;
        color: #1f2a44 !important;
        border-color: #e6e8ef !important;
        padding: 8px 8px !important;
    }


    .table tbody td,
    .table tr td, .table tr td span, .table tr td select {
        font-weight: 400 !important;
        font-size: 14px;
        vertical-align: middle !important;
        padding: 5px 8px !important;
        text-align: center !important;
        border-color: #ececf2 !important;
    }


    .table.table-bordered {
        border: 1px solid #e6e8ef !important;
        overflow: hidden;
        background: #fff;
    }


    .table tbody tr:nth-child(even) {
        background: #fafbfe;
    }


    .table td, .table th {
        text-align: center !important;
    }


    .table a .fa {
        font-size: 18px;
        padding: 6px 8px;
        border-radius: 10px;
        transition: 0.15s ease-in-out;
    }

    .table a:hover .fa {
        background: rgba(49,112,143,0.12);
    }


.wrap-text {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}


.table .col-md-6 {
    padding-left: 6px;
    padding-right: 6px;
}


.btun33n,
.btun33n:link,
.btun33n:visited {
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
    min-height: 38px !important;
    height: 38px !important;
    padding: 5px 15px !important;
    border-radius: 0px !important;
    font-size: 14px !important;
    font-weight: 600;
    background: var(--mint-surface-2) !important;
    border: 1px solid var(--mint-border) !important;
    box-shadow: 0 5px 10px rgba(15, 23, 42, 0.06);
    text-decoration: none !important;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    margin-bottom: 10px;
    color: var(--dark) !important;
    display: inline-block;
    text-align: center;
}


    .btun33n:hover {
        background: var(--mint-surface) !important;
        border-color: var(--primary-light) !important;
        color: var(--primary-dark) !important;
    }


    .btun33n[disabled],
    .btun33n.aspNetDisabled {
        opacity: .6;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }


    .btun33n > span,
    .btun33n > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 5px;
        background: #fff !important;
        border: 1px solid var(--mint-border) !important;
        color: var(--primary-dark) !important;
        font-size: 18px;
        margin-right: -10px;
        float: right;
        margin-left: 5px;
        margin-top:-1px;
    }



    .btun33n[style*="float:left"],
    .btun33n[style*="float: left"] {
        display: inline-flex !important;
    }

    .btun33n.is-secondary {
        background: #ffffff !important;
        border-color: var(--primary-light) !important;
        color: #334155;
    }

        .btun33n.is-secondary:hover {
            background: #f8fafc;
            border-color: var(--primary) !important;
            color: #036B5C;
        }

/*--------------مربع اختيار اللون ----------------*/
.styleswitch#default {
    background-color: #039f8a;
}

.styleswitch#Strongcyan {
    background-color: #af9742;
}

.styleswitch#DarkCyan {
    background-color: #2b6fab;
}

.styleswitch#asphalt {
    background-color: #34495e;
}

.styleswitch#blue {
    background-color: #2badf5;
}

.styleswitch#orange {
    background-color: #e67e22;
}

.styleswitch#clouds {
    background-color: #ecf0f1;
}

.styleswitch#concrete {
    background-color: #95a5a6;
}

.styleswitch#green {
    background-color: #81b13c;
}

.styleswitch#Softred {
    background-color: #e88292;
}

.notification {
    color: white;
    margin-left: 0px !important;
    float: right;
    margin-top: 0px !important;
    margin-right: 0px !important;
    display: block;
}

.w-84 {
    width: 84% !important;
}

.w-67 {
    width: 67% !important;
}

.w-48 {
    width: 48% !important;
}

.w-75 {
    width: 75.3% !important;
}

.switcher {
    top: 9.3% !important;
}

.switcher2 {
    top: 32.0% !important;
}

.overlay {
    z-index: 1000 !important;
}

.user-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 15vw;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51,51,51,0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

@media (max-width: 768px) {
    .widph-100 {
        width: 100% !important;
    }

    .lab-e {
        width: 100% !important;
    }

    .btun33n,
    .btun33n:link,
    .btun33n:visited {
        width: 100%;
    }

    .w-84 {
        width: 100% !important;
    }

    .w-67 {
        width: 100% !important;
    }

    .w-48 {
        width: 100% !important;
    }

    .w-75 {
        width: 100% !important;
    }

    .table {
        overflow-x: auto !important;
        display: block;
    }

    .user-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 45vw;
    }
}

@media(max-width:1200px) {

    .datetime-display {
        display: none;
    }
}


.lab-e {
    width: 140px !important;
    min-width: 140px;
    margin: 0 !important;
    font-weight: 600 !important;
    height: 33px;
    color: var(--dark);
    padding-top: 5px;
}

.form-row-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .form-row-inline .form-control {
        width: 100% !important;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .form-row-inline .input-group {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 100%;
    }

.input-group-icon .input-group-addon {
    background: #fff; /* اختياري */
    padding: 0 10px;
}

    .input-group-icon .input-group-addon i {
        color: #8a8a8a;
    }

@media (max-width: 767px) {
    .form-row-inline {
        display: block;
    }

    .lab-e {


        line-height: normal;
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .form-row-inline .form-control,
    .form-row-inline .input-group {
        width: 100% !important;
    }
}
