/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    width: 240px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a8a, #172554);
    color: #e0e7ff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.nav-item {
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar a {
    display: block;
    color: #c7d2fe;
    text-decoration: none;
    font-size: 15px;
    width: 100%;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.sidebar a:active .nav-item {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#navlogo {
    width: 100%;
    height: 100px;
    text-align: center;
}

#navlogo span {
    display: block;
    width: 100%;
    height: 100%;
}

#navlogo span span {
    background-color: white;
    clip-path: circle(closest-side);
    padding: 0;
    /* height: 40px; */
}

#navlogo:hover #navlogo-wrap {
    /* -webkit-box-shadow: 0px 0px 25px 1px rgb(255, 255, 255);
    -moz-box-shadow: 0px 0px 25px 1px rgb(255, 255, 255); */
    filter: drop-shadow(0px 0px 10px rgb(255, 255, 255));
}