.ew-container{max-width:720px;margin:20px auto;padding:16px;border:1px solid #e5e7eb;border-radius:16px;background:#fff;box-shadow:0 10px 20px rgba(0,0,0,.04)}
.ew-form{display:block}
.ew-step-info{margin-bottom:10px;color:#374151;font-size:14px}
.ew-label{font-size:20px;margin:8px 0 12px;color:#111827}
.ew-options{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.ew-option{display:flex;align-items:center;gap:10px;padding:10px 12px;border:1px solid #e5e7eb;border-radius:12px;cursor:pointer;transition:box-shadow .2s,border-color .2s}
.ew-option:hover{box-shadow:0 6px 14px rgba(0,0,0,.05);border-color:#d1d5db}
.ew-option input{accent-color:#3b82f6}
.ew-option-img{width:56px;height:56px;object-fit:cover;border-radius:10px}
.ew-option-text{font-size:16px;color:#111827}
.ew-field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.ew-field input,.ew-field select,.ew-field textarea{border:1px solid #e5e7eb;border-radius:10px;padding:10px 12px;font-size:16px}
.ew-nav{display:flex;gap:8px;justify-content:space-between;margin-top:10px}
.ew-btn{background:#111827;color:#fff;border:0;border-radius:10px;padding:10px 16px;cursor:pointer}
.ew-btn[disabled]{opacity:.5;cursor:not-allowed}
.ew-msg{margin-top:10px;color:#065f46}
@media (max-width:640px){.ew-options{grid-template-columns:1fr}.ew-option-img{width:48px;height:48px}}

/* Toast popup (confirmation) */
.ew-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
  font-size: 15px;
  line-height: 1.4;
  max-width: 90%;
  text-align: center;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;
}
.ew-toast-success { background: #065f46; color: #fff; }
.ew-toast-error { background: #7f1d1d; color: #fff; }
.ew-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
