.sidebar-wrapper {
    z-index: 9999;
  width: 70px;
  background: linear-gradient(to bottom, #FDF5E6, #FDF5E6);
  border-right: 1px solid #ddd;
  height: 100vh;
  position: fixed;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.sidebar-item {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar-item:hover {
  background: linear-gradient(to right, #e1e9ff, #d5e0ff);
}

.sidebar-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2));
}

.sidebar-item i {
  margin-bottom: 5px;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2));
}

.sidebar-item span {
  font-size: 12px;
  color: #333;
  display: block;
}

.dot {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #ff5fd7, #7a4dd8);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(122, 77, 216, 0.6);
}

.dropdown {
  position: absolute;
  left: 70px;
  top: 0;
  background: #fff;
  min-width: 200px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}

.sidebar-item:hover .dropdown {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown a:hover {
  background: #f0f0f5;
}