body {
  font-family: 'DM Sans', sans-serif;
}

.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;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
}
.stat-card {
  background: var(--color-background-primary, #fff);
  border: 0.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.stat-icon.teal  { background: #E1F5EE; color: #0F6E56; }
.stat-icon.pink  { background: #FBEAF0; color: #D4537E; }
.stat-icon.purple{ background: #EEEDFE; color: #534AB7; }
.stat-text { display: flex; flex-direction: column; }
.stat-number {
  font-size: 28px;
  font-weight: 500;
  color: #111;
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}