* {
  box-sizing: border-box;
}

html, body {
  height: 100vh;  /* GENAU 100% HÖHE! */
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#topbar {
  height: 108px !important;
  background: #060d3a;
  color: white;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px !important;
  position: relative;
  z-index: 1000;
}


#topbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

#topbar input#address {
  flex-grow: 1;
  min-width: 180px;
  max-width: 250px;
  height: 28px;
  font-size: 14px;
}

#topbar input:not(#address) {
  width: 45px !important;
  height: 24px;
  font-size: 12px;
}

#topbar select {
  width: 85px !important;
  height: 28px !important;
  font-size: 13px !important;
  padding: 2px 4px;
}

#topbar > div:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

#topbar button {
  height: 26px;
  font-size: 14px;
  padding: 0 5px;
  white-space: nowrap;
  flex-shrink: 1;
}

/* MAP 100% BÜNDIG - KEIN ABSTAND! */
#map {
  position: absolute !important;
  top: 100px !important;     /* EXAKT UNTER TOPBAR */
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;   /* VOLLBREITE */
  height: calc(100vh - 100px) !important;  /* EXAKTE RESTHÖHE */
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  z-index: 1 !important;
}

/* DRAWROOF direkt in Map */
#drawRoof {
  position: absolute;
  top: 115px;     /* 5px in Map */
  left: 200px;
  z-index: 1002;
  font-size: 14px;
  padding: 8px 12px;
  background: #ffcc00;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  font-weight: bold;
}

#templateImage {
  z-index: 1003 !important;
}


