.popup-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #e4e0e2;
  color: #222;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  font-size: 14px;
  z-index: 1000;
  animation: slideUpFadeIn 0.4s ease-out;
  border: 1px solid #e0e0e0;
}

/* Responsive center on smaller screens */
@media (max-width: 600px) {
  .popup-notice {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }
}

.popup-notice button {
  margin-top: 12px;
  padding: 6px 14px;
  border: none;
  background-color: #ff85c1;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.2s;
}

.popup-notice button:hover {
  background-color: #ffacd9;
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}