/* Mobile Bottom Navigation - Navy Blue & Field Green Edition */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(27, 54, 93, 0.15); /* Border Navy Halus */
  z-index: 9998;
  box-shadow: 0 -2px 15px rgba(27, 54, 93, 0.08); /* Bayangan Navy */
  display: none;
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2px 0;
  max-width: 640px;
  margin: 0 auto;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #64748B; /* Warna abu-abu kebiruan (slate) */
  transition: all 0.3s ease;
  position: relative;
}

.bottom-nav-item:hover {
  color: #2E7D32; /* Warna Hijau Lapangan saat hover */
}

.bottom-nav-item.active {
  flex-direction: row;
  gap: 8px;
  background: linear-gradient(135deg, #1B365D 0%, #2E7D32 100%); /* Gradasi Premium Biru Navy ke Hijau Lapangan */
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.25); /* Bayangan Hijau Lapangan */
}

/* Icon variant switching */
.bottom-nav-item .icon-outlined { display: block; }
.bottom-nav-item .icon-filled { display: none; }
.bottom-nav-item.active .icon-outlined { display: none; }
.bottom-nav-item.active .icon-filled { display: block; }

.bottom-nav-item-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  display: none;
  white-space: nowrap;
}

.bottom-nav-item.active .bottom-nav-item-label { display: block; }

/* Avatar styles */
.bottom-nav-avatar-img,
.bottom-nav-avatar-initials {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
}

.bottom-nav-avatar-initials {
  background: linear-gradient(135deg, #1B365D 0%, #2E7D32 100%); /* Gradasi Navy & Hijau Lapangan */
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav-item.active .bottom-nav-avatar-initials {
  background: white;
  color: #1B365D; /* Teks inisial menjadi Biru Navy saat aktif */
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.bottom-nav-item-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #B91C1C; /* Warna merah premium untuk notifikasi tetap dipertahankan agar kontras */
  color: white;
  border-radius: 10px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile User Sheet - Bottom Sheet */
.mobile-user-sheet-content {
  background: #FAFBFD; /* Warna dasar off-white kebiruan yang bersih */
  border-radius: 16px 16px 0 0;
}

.mobile-user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1B365D 0%, #2E7D32 100%); /* Gradasi Navy & Hijau Lapangan */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 600;
}

.mobile-user-sheet-item:hover {
  background: #F1F5F9; /* Highlight abu-abu biru lembut saat di-hover */
  color: #2E7D32; /* Teks berganti menjadi Hijau Lapangan */
}

.mobile-user-sheet-icon {
  color: #1B365D; /* Icon di menu berganti menjadi Biru Navy */
  font-size: 20px;
  width: 24px;
  text-align: center;
}