.info-icon {
  cursor: pointer;
  background: #007bff;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
}

.info-box {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 20px;
  border: 1px solid #24622D;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border-radius: 5px;         /* Runde hjørner */
  z-index: 8000;
  cursor: pointer;
}

.info-box.show {
  display: block;
}

.close-btn {
  float: right;
  cursor: pointer;
}