.side {
    padding: 10px;
    position: fixed;
    width: 300px;
    left: -300px;
    top: 0;
    height: 100vh;
    background-color: #ffffff;
    transition: .3s;
    z-index: 999;
}

.side ul {
    padding: 10px;
    color: black;
    font-size: large;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#sidebar.active {
    left: 0;
}

.menu-item.active {
    background: linear-gradient(135deg, #eff6ff, #fdf2f8);
    border-color: #93c5fd !important;
    transition:  0.4s ease;
}

.menu-item.active .menu-title {
    color: #1d4ed8;
}

.menu-item.active .menu-desc {
    color: #93c5fd;
}

.menu-item.active .icon-box {
    background-color: #dbeafe;
    color: #3b82f6;
}

.menu-item.active .bildiris {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
}

.az {
    text-align: center;
}

/* Scrollbar-ın özü */
::-webkit-scrollbar {
  width: 6px;
}

/* Arxa fon */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Sürüşdürülən hissə */
::-webkit-scrollbar-thumb {
  background: #5DCDC3;
  border-radius: 2px;
}

/* Hover zamanı */
::-webkit-scrollbar-thumb:hover {
  background: #2B3E50;
}


.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}   