.web-notify {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 320px;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.web-notify__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.web-notify__content { flex: 1; }

.web-notify__title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.web-notify__body {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.web-notify__image {
  width: 100%;
  border-radius: 6px;
  margin-top: 8px;
  object-fit: cover;
}

.web-notify__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 14px;
  padding: 0;
  flex-shrink: 0;
}
