/* ── WebView Alert Plugin ── */

.wva-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wva-dialog {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  animation: wva-fade-in 0.25s ease;
}

.wva-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #222;
}

.wva-message {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px;
}

.wva-button {
  display: inline-block;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 36px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.wva-button:hover {
  background: #555;
}

@keyframes wva-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}