#openstreetmap {
  height: 800px;
  max-width: 95%;
  max-height: 90%;
  margin: 0 auto;
}

.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.info h4 {
    margin: 0 0 5px;
    color: #777;
}

#countries-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 95%;
  margin: 15px auto;
  margin-left: 2.5%;
}

/* Einzelne "Karte" */
.country-card-gradient {
  position: relative;
  width: 150px;
  min-height: 150px;
  background: linear-gradient(135deg, #f0f6ff 0%, #e0e5ec 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(60, 80, 120, 0.08);
  padding: 20px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.country-name {
  font-size: 1.15em;
  margin-bottom: 28px;
  margin-top: 4px;
  text-align: center;
  color: #234;
  font-weight: 500;
}

.badge {
  /*position: absolute;
  top: 16px;
  right: 16px;
  */
  position: relative;
  top: 0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.95em;
  font-weight: bold;
  color: #fff;
  background: #bbb;
  letter-spacing: 0.4px;
  box-shadow: 0 1px 4px rgba(80, 90, 100, 0.07);
}
.badge.visited {
  background: #26945e;
}
.badge.not-visited {
  background: #e73636;
}

