.popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}


.popupContainer {
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  padding: 24px;
  width: 90%;
  max-width: fit-content;
  max-height: 90vh;
  transform: scale(0.9);
  animation: popupIn 0.25s ease forwards;
}

.popupContent {
  margin-top: 16px;
}

.popupClose {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.popupClose:hover {
  color: var(--color-text);
}
