body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f4f4f4;
  color: #222;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.topbar {
  background: linear-gradient(to bottom, #00508b 70%, white 30%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bsh-logo {
  position: absolute;
  top: -40px;
  left: 0;
  height: 180px;
  width: auto;
}

.bsh-claim {
  font-size: 1.1rem;
  color: white;
  line-height: 1.2;
  margin-left: 100px;
}


.topbar-right a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.topbar-sub {
  background-color: white;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}

.topbar-title {
  color: #00508b;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.main-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.status-message {
  border-left: 6px solid #dc3545;
  background-color: #fff0f0;
  padding: 1rem;
  margin-bottom: 1rem;
}

.status-message.success {
  border-left-color: #28a745;
  background-color: #f0fff0;
}

.status-message.warning {
  border-left-color: #ffc107;
  background-color: #fffbf0;
}

footer {
  background-color: #00508b;
  color: white;
  text-align: center;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-top: 3rem;
}
