.secondary-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #e5e5ea;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  z-index: 2000;
  padding: 10px 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 12px;
  
}

.navbar-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.select-box {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.select-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #F7F7F7; /* abu-abu khas iOS */
  font-size: 16px;
  pointer-events: none;
  border-radius: 10px;
}

.navbar-dropdown {
  width: 100%;
  border: none;
  border-radius: 14px;
  background: #f2f2f7;
  padding: 10px 14px 10px 40px; /* ruang untuk icon */
  font-size: 15px;
  color: #1c1c1e;
  box-shadow: inset 0 0 0 1px #d1d1d6;
  transition: all 0.25s ease;
  appearance: none; /* hilangkan default arrow */
  cursor: pointer;
}

.navbar-dropdown:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 2px #007aff33;
  transform: scale(1.02);
}
.fa-search {
  color: #007AFF;   /* biru khas iOS */
  font-size: 18px;  /* ukuran ikon */
  transition: color .3s ease;
}

.fa-search:hover {
  color: #FF3B30;   /* merah iOS saat hover */
}
.judul-elegan {
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  color: #2b2b2b; /* merah elegan */
  background:#fff;
}

.judul-elegan::after {
  content: "";
  display: block;
  margin: 8px auto 0;
  width: 80%;
  height: 4px;
  background: linear-gradient(to right, #b30000 0%, #b30000 40%, transparent 100%);
  border-radius: 2px;
}
