<style>
/* Wrapper bar atas */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  box-sizing: border-box;
  font-size: 14px;
  font-family: inherit;
}

/* Kiri (logo) */
.top-left,
.top-logo {
  display: flex;
  align-items: center;
}

.top-logo img {
  display: block;
  max-height: 32px;
}

/* Tengah (teks "Cari kata kunci di sini...") */
.top-center {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  min-width: 0;           /* biar bisa ellipsis */
}

.top-center-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
}

/* Kanan (icon search, bahasa, user) */
.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Item kanan umum */
.top-right-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* Icon bulat (misal user) */
.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

/* Icon kecil (search, panah) */
.icon-small {
  font-size: 14px;
  cursor: pointer;
}
</style>