.pwa-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  max-width: 360px;
  margin: auto;
  text-align: center;
  font-family: "Segoe UI", Roboto, sans-serif;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.pwa-modal-button-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.pwa-modal-button-close:hover {
  color: #000;
}

.pwa-modal-text {
  font-size: 16px;
  margin: 20px 0;
  color: #333 !important;
}

.pwa-modal-button-1,
.pwa-modal-button-2 {
  display: inline-block;
  padding: 10px 18px;
  margin: 8px 5px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

/* Primary button */
.pwa-modal-button-1 {
  background: linear-gradient(135deg, #4cafef, #007bff);
  color: #fff !important;
  box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}
.pwa-modal-button-1:hover {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Secondary link button */
.pwa-modal-button-2 {
  background: #f5f5f5;
  color: #333 !important;
}
.pwa-modal-button-2:hover {
  background: #eaeaea;
}

/* Smooth entry animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
