.top-navbar {
  position: fixed; /* biar nempel di atas */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #0f172a;
  padding: 5px 10px; /* fix typo: 10l px -> 10px */

  display: flex;
  align-items: center;
  justify-content: flex-start; /* bukan space-start */

  color: #fff;
  z-index: 1000;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
}
.top-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 245px; /* sesuaikan dengan lebar logo */
  height: 25px;
  width: calc(100% - 245px);
  background: #fff;

  border-top: 3px solid #ef4444;
  border-color: #ef4444;
}
.top-navbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 220px; /* sedikit sebelum garis utama */
  width: 10px;
  height: 25px;
  background: #ef4444;
  transform: skewX(-20deg);

  z-index: 2;
  /* border-radius: 2px; */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    20px 0 0 0 #ef4444; /* ini garis kedua */
}

.nav-text {
  margin-left: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  line-height: 1.1;
  gap: 2px;
}
.nav-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.nav-text span {
  font-size: 12px;
  color: #e5e7eb;
}
