/* Custom Styles */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.popup.hidden {
  display: none !important;
}

.popup-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1rem;
  width: 250px;        /* smaller width */
  text-align: center;
  font-family: Arial, sans-serif;
  position: relative;
  animation: slideIn 0.4s ease-out;
}

.popup-icon {
  font-size: 28px;     /* smaller bell */
  color: #2563eb;
  margin-bottom: 8px;
}

.popup-content h3 {
  margin: 0 0 8px;
  font-size: 16px;     /* smaller title */
  font-weight: bold;
}

.popup-content p {
  font-size: 12px;     /* smaller text */
  color: #444;
  margin-bottom: 12px;
}

.popup-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;   /* smaller button */
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
  z-index: 10000; /* ensure it's clickable */
}

.popup-close:hover {
  color: #000;
}

.popup-btn:hover {
  background: #1d4ed8;
}

/* Slide in animation */
@keyframes slideIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
