.sidebar {
  position: fixed;
  top: 0;
  left: -270px;
  width: 250px;
  height: 100%;
  background-color: #1b0035;
  color: #f5d142;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
  z-index: 1001;
  border-right: 2px solid #d4af37;
  box-sizing: border-box;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 10px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  display: none;
}


/* 🔲 Overlay */
#drawerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

/* 🎨 Notification Drawer */
.notification-drawer {
  position: fixed;
  top: 0;
  right: -320px; /* थोड़ा ज्यादा छुपाएं */
  width: 300px;
  height: 100%;
  background-color: #2a0054;
  color: #f5d142;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.5);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1001;
  border-left: 2px solid #d4af37;
  box-sizing: border-box;
}


.footer-icon a {
  color: #f5d142; /* Golden color */
  text-decoration: none;
  display: inline-block;
}

.footer-icon a i,
.footer-icon a p {
  color: #f5d142; /* Apply golden to icon and text both */
}

.footer-icon a:hover i,
.footer-icon a:hover p {
  color: #ffff66; /* Slightly lighter on hover */
}
