/* ================== */
/* ℹ️ Sidebar Section */
/* ================== */

.sidebar {
  padding: 2rem;
  background: #121212;
  border-left: 1px solid #333;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* 📢 Section Titles */
.sidebar h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #4dd8ff;
  border-bottom: 1px solid #333;
  padding-bottom: 0.25rem;
}

/* 🧾 Section Blocks */
.sidebar section {
  margin-bottom: 2rem;
}

/* 🔗 Links */
.sidebar a {
  color: #4dd8ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar a:hover {
  color: #66eaff;
  text-decoration: underline;
}

/* 🌞 Light Mode Overrides */
body.light-mode .sidebar {
  background: #f9f9f9;
  border-left: 1px solid #ddd;
  color: #111;
}

body.light-mode .sidebar h2 {
  color: #007acc;
  border-bottom: 1px solid #ccc;
}

body.light-mode .sidebar a {
  color: #007acc;
}

body.light-mode .sidebar a:hover {
  color: #005f99;
}
