.sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    padding: 1rem;
}

.content {
    margin-left: 250px;
    margin-top: 0;
    min-height: 100vh;
}

.siderbar-menu {
    font-size: 14px;
    font-weight: 400;
    padding: 0.8rem 0rem 0.8rem 1.5rem;
    margin-right: 1.5rem;
    color: #2A3547;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-radius: 0 2rem 2rem 0;
    margin-bottom: 0.3rem;
    text-decoration: none;
}

.sidebar-group {
    font-size: 12px;
    font-weight: bold;
    color: #2A3547;
    margin: 0.8rem 1.5rem;
}

.siderbar-menu i {
    height: 21px;
    width: 21px;
    font-size: 18px;
}

.siderbar-menu.active {
    background-color: var(--bs-primary);
    color: #fff;
    filter: drop-shadow(0px 7.5px 8px #5f76e85e);
}

.submenu-list {
    list-style-type: none;
    margin: -0.5rem 0.5rem 0.8rem 2rem;
    padding: 0;
    padding-left: 1rem;
    border-left: #00000010 solid 1px;
}

.submenu-list li {
    margin: 0.5rem 0;
}

a.submenu {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #2A3547;
}

.submenu.active {
    font-weight: 500;
}

.sidebar-logo {
    max-width: 200px;
}

.admin-hero {
    width: 80%;
    transform: scale(1.2);
}

.admin-hero-container {
    transform: translateY(-15%);
}

.account-icon {
    font-size: 20px;
    margin-left: 0.8rem;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    z-index: 999;
    border-bottom: #00000010 solid 1px;
}

.nav-notification {
    margin-top: 0.5rem;
}
.nav-notification i {
    font-size: 20px;
    color: #929ba8;
}

.nav-profile {
    width: 40px;
    height: 40px;
}

.nav-text {
    font-size: 14px;
    color: #929ba8;
    margin: 0;
    font-weight: 400;
    max-width: 120px;
    overflow: hidden;
    white-space: nowrap;
}

.nav-text .text-name {
    font-weight: 500;
}

.btn-nav {
    border: none;
    background-color: transparent;
}

.text-nav-name {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 14px;
}

.text-nav-detail{
    font-size: 10px;
    font-weight: 300;
    color: #fff;
    line-height: 10px;
}

.icon-menu-panel {
    font-size: 20px;
    color: #145B95;
    border: #145B95 solid 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    width: 140px;
    text-align: center;
}

.icon-menu-panel i {
    font-size: 35px;
    color: #145B95;
    margin-top: 0.5rem;
}

.icon-menu-panel p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #145B95;
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .sidebar {
        display: none;
    }
    .content {
        margin-left: 0;
    }
}