/* =========================
   HEADER CONTAINER
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 32px;

  /* professional green gradient */
  background: linear-gradient(135deg, #0f6b3e, #198754);

  color: white;
  flex-wrap: wrap;
  gap: 14px;

  /* depth */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   LEFT SIDE
========================= */
.header-left h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.header-left p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-family: Arial, sans-serif;
}

/* =========================
   RIGHT SIDE CONTAINER
========================= */
.header-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;

  font-size: 13px;
  font-family: Arial, sans-serif;
}

/* =========================
   LINKS + TEXT ITEMS
========================= */
.header-right a,
.header-right span {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;

  padding: 4px 6px;
  border-radius: 6px;

  transition: all 0.2s ease;
  white-space: nowrap;
}

/* hover effect (clean + modern) */
.header-right a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   STATUS INDICATOR BADGE
========================= */
#status-indicator {
  padding: 4px 10px;
  border-radius: 999px;

  font-weight: 600;
  font-size: 12px;

  white-space: nowrap;

  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-right {
    justify-content: flex-start;
  }
}
