/* haomeng_smart_open.css v1.0 */
.smart-open-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: smart-fade 0.2s ease-out;
}
@keyframes smart-fade { from { opacity: 0 } to { opacity: 1 } }
.smart-open-modal {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px 22px;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.smart-open-title {
  font-size: 18px; font-weight: 700; color: #1d1d1f;
  text-align: center; margin-bottom: 12px;
}
.smart-open-desc {
  font-size: 14px; color: #666;
  text-align: center; line-height: 1.6;
  margin-bottom: 18px;
}
.smart-open-desc b { color: #4c1d95; }
.smart-open-url {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.smart-open-url input {
  flex: 1; padding: 8px 10px; font-size: 12px;
  border: 1px solid #ddd; border-radius: 6px;
  background: #f7f7f7; color: #333;
}
.smart-open-url button {
  padding: 8px 14px; border: none;
  background: linear-gradient(135deg,#6f42c1,#4c1d95);
  color: #fff; border-radius: 6px; font-size: 13px; cursor: pointer;
}
.smart-open-close {
  width: 100%; padding: 10px;
  background: #f0f0f0; color: #333;
  border: none; border-radius: 8px;
  font-size: 14px; cursor: pointer;
}
.smart-open-close:hover { background: #e5e5e5; }
