/* Reset basic styles */
.notification-reset {
  box-sizing: border-box;
  font-family: inherit;
}

/* Container */
.notification-popover-container {
  position: fixed;
  top: -200px; /* start hidden for animation */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  width: 320px;
  overflow: hidden;
  transition: top 0.5s ease-in-out;
}

/* When visible */
.notification-popover-container.slide-down {
  top: 20px; /* slides down into view */
}

/* Dialog */
.notification-popover-dialog {
  padding: 15px;
}

/* Body section */
.popover-body {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.popover-body-icon img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-right: 10px;
}

.popover-body-message {
  font-size: 15px;
  color: #333;
  line-height: 1.3;
}

/* Footer (buttons) */
.popover-footer {
  text-align: right;
}

.popover-button {
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s;
}

.popover-button.primary {
  background: #0073aa; /* WordPress blue */
  color: #fff;
}

.popover-button.primary:hover {
  background: #005f8d;
}

.popover-button.secondary {
  background: #f0f0f0;
  color: #333;
}

.popover-button.secondary:hover {
  background: #e0e0e0;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
