/* Navbar-only stylesheet.
   Keep only navbar area styling in this file. */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  background: linear-gradient(180deg, rgb(0, 17, 51) 0%, rgb(0, 32, 92) 100%);
  color: rgb(255, 255, 255);
}

.navbar-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.navbar-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.navbar-subtitle {
  margin: 0;
  font-size: 11px;
  color: rgb(191, 217, 248);
  line-height: 1.3;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgb(106, 166, 240);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 700;
}

.nav-button {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgb(158, 196, 246);
  border-radius: 6px;
  background: rgb(12, 94, 214);
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 16px 12px;
  background: rgb(0, 32, 92);
}

.summary-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
  min-height: 58px;
}

.summary-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(191, 217, 248);
}

.summary-reading {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.summary-value {
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.summary-unit {
  font-size: 11px;
  font-weight: 600;
  color: rgb(191, 217, 248);
}

.page-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 0;
  background: rgb(248, 251, 255);
}

.page-tab {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgb(191, 217, 248);
  border-radius: 8px 8px 0 0;
  background: rgb(255, 255, 255);
  color: rgb(0, 32, 92);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
}

.page-tab.is-active {
  background: linear-gradient(180deg, rgb(0, 48, 127) 0%, rgb(0, 66, 163) 100%);
  border-color: rgb(0, 48, 127);
  color: rgb(255, 255, 255);
}
