.sidebar-dashboard {
    padding: 2px 10px;
}

.sidebarmenudiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-title {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: var(--text-color-new);
}

.toggle-button {
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    background: none;
    border: none;
    color: var(--text-color-new);
    cursor: pointer;
}

.sidebar-nav {
    margin-top: 1rem;
}

.dashboard .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    /* color: #d1d5db; */
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border-light);
}

.dashboard .nav-link.active {
    border-radius: 8px;
    /* background: var(--sidebar-bg-active); */
    color: var(--sidebar-color-active);
    background: linear-gradient(175deg, #292548 3.41%, #03856E 95.82%);
}

.icon-container {
    display: inline-flex;
}

.link-text {
    margin-left: 0.75rem;
    transition: opacity 0.3s;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 500;
    line-height: 19.44px;
}

.sidebar-dashboard.closed {
    width: 5rem;
}

.sidebar-dashboard.closed .sidebar-title,
.sidebar-dashboard.closed .link-text {
    opacity: 0;
    display: none;
}

.header-img-dash {
    height: 56px !important;
    width: 56px !important;
    margin-right: 10px;
}

.header-img-govt {
    height: 53px !important;
    width: 44px !important;
    margin-right: 10px;
}

@media (max-width: 1280px) {

    .link-text {
        font-size: 12px !important;
    }

    .dashboard .nav-link {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 0;
    }

    .sidebar.open {
        width: 256px;
    }

    .sidebar.closed {
        width: 0;
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }

    to {
        width: 256px;
    }
}

@keyframes slideOut {
    from {
        width: 256px;
    }

    to {
        width: 0;
    }
}

.sidebar-dashboard::-webkit-scrollbar {
    width: 6px;
}

.sidebar-dashboard::-webkit-scrollbar-track {
    background: #1f2937;
}

.sidebar-dashboard::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 3px;
}

.sidebar-dashboard {
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 109);
    border-right: 1px solid var(--border-light);
}

.sidebar-w {
    width: 16%;
}

.dashboard-w {
    width: 84%;
}

.sidebar-w1 {
    width: 10%;
}

.dashboard-w1 {
    width: 90%;
}

.sidebarbuttontitle {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: var(--text-color-new);
}

.showtoolstext {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color-new);
    text-decoration: underline;
}

.sidebarpara {
    font-family: Poppins;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text-color-new);

}

.toolbtnboarder {
    border-radius: 8px;
    background: linear-gradient(180deg, #FFF 0%, #BDD0FB 100%), #FFF;
}

.togglediv .checkbox {
    opacity: 0;
    position: absolute;
}


.togglediv .checkbox-label {
    background-color: var(--bg-secondary);
    width: 82px;
    height: 29px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-moon {
    color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.togglediv .checkbox-label .ball {
    background-color: var(--bg-color);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 2px;
    top: 3px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.togglediv .checkbox:checked+.checkbox-label .ball {
    transform: translateX(50px);
}

/*  Support me if you like it */
.togglediv .support {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.togglediv .support a {
    color: #292c35;
    font-size: 32px;
    backface-visibility: hidden;
    display: inline-block;
    transition: transform 0.2s ease;
}



.support a:hover {
    transform: scale(1.1);
}

.menu-toggle-dash {
    display: none;
    border: none;
    background-color: transparent;
}

.navbar-dash-sm {
    display: none;
}

.main-menu .navbar-nav .nav-link {
    border-bottom: 1px solid var(--border-light);
    color: var(--bg-color);
    padding: 12px;
    font-size: 13px;
}

.main-menu .navbar-nav .active {
    border-radius: 8px;
    background: var(--sidebar-bg-active);
    color: var(--sidebar-color-active);
}

.mobiletoparea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}

@media screen and (max-width: 1280px) {
    .sidebar-dashboard {
        padding: 2px 10px;
    }
}

@media screen and (max-width: 1170px) {
    .sidebarbuttondiv {
        display: none;
    }

    .link-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 1024px) {
    .sidebarbuttondiv {
        display: none;
    }

    .link-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .menu-toggle-dash {
        display: block;
    }

    .main-menu {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100vh;
        height: calc(100vh=102px);
        flex-direction: column;
        background-color: #252525;
        transition: 0.5s all ease;
        align-items: center;
        transform: translateX(-800px);
        padding-top: 60px;
        background-color: var(--bg-secondary);
        padding: 0px 10px 10px 10px;
        top: 0px;
        z-index: 9999;
        width: 100%;
    }

    .main-menu.show {
        transform: translateX(0px);
        transition: 0.5s all ease;
        width: 48%;
    }

    .navbar-dash-lg {
        display: none;
    }

    .navbar-dash-sm {
        display: block;
    }

}

@media screen and (max-width: 767px) {
    .dash {
        height: 78px;
    }

    .main-menu.show {
        width: 75%;
    }
}

@media screen and (max-width: 576px) {
    .main-menu.show {
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    .main-menu {
        width: 82%;
    }
}