/* ==========================
   SIDEBAR STYLES
   ========================== */
.sidebar {
  height: 100vh;
  background-color: #fff;
  border-right: 1px solid #ddd;
  min-width: 230px;
  padding-top: 0;
}

/* Nav Links */
.sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  font-size: 16px;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
  background-color: #f0f4fa;
  color: #1a237e;
  font-weight: bold;
}

/* Optional: Add icon styling if needed */
.sidebar .nav-link i {
  margin-right: 10px;
  font-size: 18px;
  width: 22px;
  text-align: center;
}

/* Responsive Sidebar */
@media (max-width: 900px) {
  .sidebar {
    min-width: 60px;
  }
  .sidebar .nav-link span {
    display: none;
  }
}
