
.shared-topbar {
  background: #172f45;
  color: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.shared-topbar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.shared-topbar-logo-wrap {
  text-align: left;
  margin-bottom: 15px;
}
.shared-topbar-logo {
  height: 40px;
  width: auto;
}
.shared-topbar h1 {
  margin: 0;
  font-size: 22px;
}
.shared-topbar .meta {
  font-size: 14px;
  opacity: 0.95;
}
.shared-topbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.shared-topbar .nav-btn,
.shared-topbar #languageSelector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: white;
  color: #1f4e79;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  min-height: 40px;
}
.shared-topbar .nav-btn:hover,
.shared-topbar #languageSelector:hover {
  background: #ccd3db;
}
.shared-topbar #languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.shared-topbar #languageSelector option {
  color: #1f2937;
  background: white;
}
.shared-topbar-logout-timer {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: #dbe6ef;
  opacity: 0.98;
  font-family: Cambria, Georgia, "Times New Roman", serif;
}

.shared-topbar-logout-timer.warning {
  color: #ffe08a;
}

.shared-topbar-logout-timer.danger {
  color: #ffb3b3;
  font-weight: 700;
}
@media (max-width: 980px) {
  .shared-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}


