/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-content {
  position: relative;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  font-family: inherit;
}

.popup-content h2 {
  margin-top: 0;
  color: #333;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.popup-content p {
  color: #444;
  font-size: 1.05em;
  line-height: 1.5em;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}
.close-popup:hover {
  color: #000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}