html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0f1622;
  color: #fff;
}

#app {
  display: flex;
  height: 100%;
  width: 100%;
}

#sidebar {
  width: 0;
  background: #1a202c;
  color: white;
  overflow-y: auto;
  transition: width 0.3s ease, padding 0.3s ease;
  border-right: 2px solid #6d89ae;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
  z-index: 999;
}

#sidebar.open {
  width: 320px;
  padding: 20px;
}

#sidebar img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

#flight-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-block {
  text-align: center;
  background: #222a36;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.info-value {
  font-size: 22px;
  font-weight: bold;
  color: #6d89ae;
}

.info-label {
  font-size: 12px;
  color: #ccc;
  letter-spacing: 1px;
}

.airport-name {
  font-size: 15px;
  color: #6d89ae;
  font-weight: 500;
  margin-bottom: 3px;
}

.info-block.dual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-block.dual .info-value {
  display: inline-block;
  margin: 0 5px;
}

#map {
  flex: 1;
  height: 100%;
  width: 100%;
  z-index: 1;
}

#sidebar::-webkit-scrollbar {
  width: 8px;
}
#sidebar::-webkit-scrollbar-thumb {
  background: #6d89ae;
  border-radius: 4px;
}
#sidebar::-webkit-scrollbar-track {
  background: #2a3140;
}
