#flights-map {
  border: 1px solid #ccc;
  margin: 20px 0;
  height: 350px !important; /* ← add this */
  width: 100% !important;
}

.fmp-card {
  display: flex;
  width: 300px;
  max-width: 90vw;
  font-family: sans-serif;
}

.fmp-card-left {
  flex: 1;
  padding: 10px;
}

.fmp-card-right {
  width: 120px; /* verhoogd van bijv. 80 naar 120 */
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.fmp-card-right img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* of 'contain' als je geen uitsnijden wil */
  display: block;
}


.leaflet-popup-content {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: none;
  box-shadow: none;
  border: none;
}

.flight-popup {
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 260px;
}

.flight-popup .left {
  padding: 14px;
  background: white;
  flex: 2;
}

.flight-popup .left div {
  margin-bottom: 6px;
  font-size: 14px;
}

.flight-popup .left div:first-child {
  font-weight: bold;
  font-size: 16px;
}

.flight-popup .right {
  background: #f4f4f4;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.flight-popup .right img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* of 'contain' als je geen uitsnijden wil */
  display: block;
}


/*
.flight-popup .right img {
  max-height: 40px;
  max-width: 60px;
}
*/