/* Fonts */
.system-uicons--arrow-right {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'%3E%3Cpath fill='none' stroke='%236F6F71' stroke-linecap='round' stroke-linejoin='round' d='m13.5 6.497l4 4.002l-4 4.001m-9-4h13' stroke-width='1'/%3E%3C/svg%3E");
    vertical-align: middle;
}
.iconamoon--zoom-in {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m21 21l-4.343-4.343m0 0A8 8 0 1 0 5.343 5.343a8 8 0 0 0 11.314 11.314M11 8v6m-3-3h6'/%3E%3C/svg%3E");
}

.weui--search-outlined {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236F6F71' fill-rule='evenodd' d='m16.31 15.561l4.114 4.115l-.848.848l-4.123-4.123a7 7 0 1 1 .857-.84M16.8 11a5.8 5.8 0 1 0-11.6 0a5.8 5.8 0 0 0 11.6 0' stroke-width='0.5' stroke='%236F6F71'/%3E%3C/svg%3E");
}

.iconamoon--arrow-down-2-thin {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' d='m7 10l5 5l5-5' stroke-width='1'/%3E%3C/svg%3E");
}

.material-symbols-light--logout {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M5.616 20q-.691 0-1.153-.462T4 18.384V5.616q0-.691.463-1.153T5.616 4h6.403v1H5.616q-.231 0-.424.192T5 5.616v12.769q0 .23.192.423t.423.192h6.404v1zm10.846-4.461l-.702-.72l2.319-2.319H9.192v-1h8.887l-2.32-2.32l.702-.718L20 12z' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.material-symbols-light--close-rounded {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 12.708l-5.246 5.246q-.14.14-.344.15t-.364-.15t-.16-.354t.16-.354L11.292 12L6.046 6.754q-.14-.14-.15-.344t.15-.364t.354-.16t.354.16L12 11.292l5.246-5.246q.14-.14.345-.15q.203-.01.363.15t.16.354t-.16.354L12.708 12l5.246 5.246q.14.14.15.345q.01.203-.15.363t-.354.16t-.354-.16z' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
}


/* Maine Design START */
:root {
    --sidebar-width: 260px;
    --accent: #2563eb;
    --card: #ffffff;
    --muted: #6b7280;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #161B21;
    position: relative;
}

/* Circle highlight */
/* Bottom-to-top linear gradient */
body::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(195, 23, 255, 0.1),
            /* subtle purple at bottom */
            rgba(22, 27, 33, 1)
            /* solid black at top */
        );
    pointer-events: none;
    z-index: -2;
    /* behind everything */
}

/* Radial purple circle glow */
body::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: 120px;
    right: 120px;
    background: radial-gradient(circle,
            rgba(195, 23, 255, 0.15) 0%,
            /* subtle purple at center */
            rgba(195, 23, 255, 0.02) 50%,
            /* almost transparent */
            rgba(22, 27, 33, 0) 80%
            /* fully transparent edges */
        );
    pointer-events: none;
    z-index: -1;
    /* behind content, above the gradient */
}

.app {
    display: flex;
    min-height: 100vh;
    transition: 0.25s ease;
}

/* SIDEBAR */
.sidebar {
    width: var(--sidebar-width);
    /* background: linear-gradient(180deg, #1F2433 0%, #151a28 100%); */
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 10px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: 0.25s ease;
}

.sidebar.closed {
    width: 0;
    padding: 0;
    overflow: hidden;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.logo img {
    width: 100%;
}

nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #343742;
    font-size: 20px;
}
.nav-item a{
    text-decoration: none;
    color: #fff;
}

/*.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}*/

/* DROPDOWN INSIDE MENU */
.sub-menu {
    display: none;
    flex-direction: column;
    margin-top: 5px;
}

.sub-menu.open {
    display: flex;
}

.sub-item {
    border-radius: 6px;
    margin: 4px 0;
}

.sub-item a {
    text-decoration: none;
    color: #ADADAD;
    display: block;
    padding: 8px;
}

.sub-item:hover {
    background: #161B21;
    color: #fff;
}

.sub-item:hover a {
    color: #fff;
}

.sub-item.active,.nav-item.active {
    background: #161B21;
}

.sub-item .system-uicons--arrow-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' d='m13.5 6.497l4 4.002l-4 4.001m-9-4h13' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.sub-item.active .system-uicons--arrow-right,
.sub-item:hover .system-uicons--arrow-right {
    opacity: 1;
}

.sub-item.active a {
    color: #fff;
}

/* Close Icon */
.open .icon-close-btn {
    border: navajowhite;
    background: #161b21;
    position: absolute;
    right: -20px;
    width: 42px;
    height: 42px;
    text-align: center;
    border-radius: 60px;
    line-height: normal;
}

.open .icon-close-btn span {
    display: block;
    text-align: center;
    margin: 0px auto;
}

/* MAIN AREA */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    width: 100%;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    background: #1F2433;
    border-radius: 50px;
}

.topbar h2 {
    color: #fff;
    font-weight: 200;
    font-size: 26px;
    margin: 0;
}

.topbar button.menuIcon {
    border: none;
    background: #161b21;
    color: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.icon-btn {
    padding: 8px;
    background: var(--card);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.noti-log {
    position: relative;
}

.noti-log ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.noti-log ul li {
    list-style: none;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    padding-left: 15px;
    margin-left: 15px;
    font-size: 14px;
    line-height: 24px;
}

.noti-log ul li:first-child {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

.noti-log ul li img {
    vertical-align: text-top;
    width: 20px;
}

.noti-log ul li b {
    color: #fff;
    position: absolute;
    bottom: -5px;
    right: -8px;
    font-size: 14px;
    font-weight: normal;
}

.noti-log ul li span {
    vertical-align: middle;
}

/* Mobile Header */
.notimobile {
    position: relative;
}

.notimobile img {
    width: 22px;
}

.notimobile b {
    position: absolute;
    bottom: 0;
    right: -10px;
    color: #242424;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}

/* CONTENT GRID */
.content {
    padding: 10px 0px;
    /*    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;*/
}

.card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}



/* RESPONSIVE */
@media (max-width: 1024px) {
    .content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 50;
        transform: translateX(-110%);
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 0px 0px 20px 4px #000000a6;
        background: linear-gradient(180deg, #1F2433 0%, #151a28 100%);
    }

    .logo img {
        width: 170px;
    }

    .main {
        width: 100%;
    }

    .topbar h2 {
        font-size: 24px;
    }

    .mobileModelzoom_button.position_icon_left {
        right: inherit;
        left: 5px;
        bottom: 5px;
        width: 24px;
        height: 24px;
    }

    .mobileModelzoom_button.position_icon_left span {
        width: 18px;
        height: 18px;
    }
}

/* END */

.page-heading {
    font-size: 25px;
}

.heading-search {
    margin: 0px 0px 10px;
    padding: 10px 20px;
    color: #fff;
}

.searchfield {
    position: relative;
}

.searchfield span {
    position: absolute;
    top: 6px;
    right: 10px;
    width: 25px;
    height: 25px;
    color: #6F6F71;
}

.searchfield input[type="text"] {
    background: #161b21;
    border: 1px solid #5D6476;
    border-radius: 12px;
    height: 40px;
    color: #fff;
    padding: 10px 15px;
}

input:focus {
    outline: none;
}

.selectmodel select {
    height: 40px;
    font-size: 14px;
    border: 1px solid #5D6476;
    background: #161b21;
    color: #fff;
    border-radius: 12px;
    padding: 10px;
}