/* =====================================================
   FASE 13 — SIDEBAR MENU (KABILAH STYLE GOLD CARD)
   ===================================================== */

.sidebar__container {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Title MENU */
.menu__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 12px;
}

/* Garis hijau di kiri */
.menu__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: #65a30d; /* hijau */
  border-radius: 2px;
}

/* Group */
.menu__group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Link jadi button */
.menu__link {
  display: block;
  background: #BB0C24; /* kuning */
  color: #ffffff;
  text-align: center;
  padding: 0.9rem 0.8rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;

  /* shadow elegan */
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);

  transition: all 0.2s ease;
}

/* Hover effect */
.menu__link:hover {
  background: #e0a800;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Active (klik) */
.menu__link:active {
  transform: scale(0.98);
}