body {
  min-height: 200vh; /* force scroll */
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#popupOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
  padding-bottom: 10px;
}

.popup {
  background: #fff;
  padding: 10px 10px;
  max-width: 98%;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  text-align: left;  /* better readability */
  line-height: 1.7;
  font-size: 10px;
  color: #333;
}

/* .popup h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
  color: #222;
} */

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
}

.popup-buttons button {
  padding: 5px 5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popup p{
  margin-bottom: 5px;
}
.accept-btn { 
  background: #28a745; 
  color: #fff; 
}
.accept-btn:hover {
  background: #218838;
}

.decline-btn { 
  background: #dc3545; 
  color: #fff; 
}
.decline-btn:hover {
  background: #c82333;
}
@media(max-width:768px){
  .popup{
    font-size: 12px;
  }
}