/* FORMULARE */

.zoom-buttons {
/*  position: fixed;
  top: 20px;
  right: 40px; */
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 1000;
}

.zoom-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background-color: rgba(21, 38, 84, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.zoom-button:hover {
  background-color: #555;
}

.zoom-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
