#map-container {
  position: relative;
  width: 100%;
  height: 270px;
}

#google-map {
  width: 100%;
  height: 100%;
}

#map-cookie-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

#map-cookie-content {
  text-align: center;
  color: white;
  padding: 20px;
}

#map-accept-btn {
  padding: 10px 20px;
  background-color: #006400;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
#map-accept-btn:hover {
    background-color: #4aa764;
}
#calendar-container {
  position: relative;
  width: 100%;
  height: 650px;
}

#google-calendar {
  width: 100%;
  height: 100%;
}

#calendar-cookie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

#calendar-cookie-content {
  text-align: center;
  color: white;
  padding: 20px;
}

#calendar-accept-btn {
  padding: 10px 20px;
  background-color: #006400;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s;
}

#calendar-accept-btn:hover {
  background-color: #4aa764;
}