/* ─── SIDEBAR ─────────────────────────────────── */
.sidebar {
  width: 215px;
  flex-shrink: 0;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.brand-title {
  display: block;
  color: #f0f2ee;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.brand-sub {
  display: block;
  color: #95C11F;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: #9aaa8a;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.13s, color 0.13s;
  line-height: 1;
}

.nav-item:hover { background: var(--sidebar-hover); color: #d4e8b8; }
.nav-item.active { background: var(--primary); color: #2D3132; font-weight: 700; }
.nav-item svg { flex-shrink: 0; }
.nav-item.small { font-size: 12px; padding: 7px 10px; }

.sidebar-bottom {
  padding: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.export-reports-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  border: none;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.13s;
}

.export-reports-btn:hover { background: var(--primary-dark); }
