.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: #6b8ca3;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.2;
  height: 34px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #6b8ca3;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.banner-button:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-button:active {
  transform: translateY(0);
  background: #e8e8e8;
}

body:has(#topbar-container),
body:has(.topbar) {
  padding-top: var(--topbar-height, 78px);
}

body:has(#banner-container):has(#topbar-container),
body:has(.urgency-banner):has(.topbar),
body:has(.urgency-banner):has(#topbar-container) {
  padding-top: calc(var(--topbar-banner-offset, 34px) + var(--topbar-height, 78px));
}
