/* --------------------------------------------------
   GLOBAL HEADER (Always Visible)
-------------------------------------------------- */
.top-header {
  width: 100%;
  height: 70px;
  background: #1E3A8A;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 999;
  position: relative;
}

.top-header-title {
  font-size: 22px;
  font-weight: bold;
  color: #f5e6c8;
  letter-spacing: 1px;
}

/* Back Button (Left Side) */
.back-btn {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  cursor: pointer;
  filter: brightness(1.2);
}

/* Profile Icon (Right Side) */
.top-header-profile {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.top-profile-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.bookmark-btn {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  cursor: pointer;
  color: #f5e6c8;
}
