/* kontakt_popup.css */
.overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup {
  background: #fff;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px #000;
  position: relative;
  z-index: 9999;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 20px; right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success { background-color: #28a745; }
.toast.error   { background-color: #dc3545; }
.toast.hidden  { display: none; }
