.ez-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.ez-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.ez-popup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease-in-out;
}
.ez-popup-overlay.active .ez-popup {
  transform: scale(1);
}
.ez-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.ez-popup-close:hover {
  background-color: #f0f0f0;
  color: #333;
}
.ez-popup-close:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.ez-popup-content {
  padding: 40px 30px 30px;
  text-align: center;
}
.ez-popup-title {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}
.ez-popup-text {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
.ez-popup-button {
  display: inline-block;
  background-color: #007cba;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 2px solid #007cba;
}
.ez-popup-button:hover {
  background-color: #005a87;
  border-color: #005a87;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}
.ez-popup-button:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .ez-popup {
    width: 95%;
    margin: 20px;
  }
  .ez-popup-content {
    padding: 30px 20px 25px;
  }
  .ez-popup-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .ez-popup-text {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .ez-popup-button {
    padding: 10px 25px;
    font-size: 15px;
  }
}
@keyframes ez-popup-fade-in {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ez-popup-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.7);
  }
}
