*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, sans-serif;
}

#app {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
  background: #1B5E20;
  color: #fff;
  flex-shrink: 0;
  z-index: 10;
}

/* White pill wrapping the logo — handles logos with opaque white backgrounds
   gracefully on the dark green header */
.logo-wrap {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}

#logo {
  height: 36px;
  width: auto;
  display: block;
}

#lang-toggle {
  background: #D42B2B;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

#lang-toggle:hover {
  background: #B71C1C;
}

#map {
  flex: 1;
  width: 100%;
}

#status-bar {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 36px;
  background: #F1F8F1;
  border-top: 1px solid #C8E6C9;
  font-size: 0.8rem;
  color: #2E7D32;
  flex-shrink: 0;
}
