/* Popup container */
#trp-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 320px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 9999;
  font-family: Arial, sans-serif;
  display: none;
  color: #fff;
  background: rgba(0,0,0,0.7);
}

/* Message text */
#trp-message {
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4em;
  font-size: 13px;
}

/* Buttons container in a single row */
.trp-buttons {
  display: flex;            
  justify-content: space-between;
  gap: 10px;                
  margin-top: 10px;
}

/* General button styling */
.trp-btn {
  flex: 1 !important;                  
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(141, 56, 56, 0.6) !important;
  color: #f524b7 !important;
  transition: all 0.3s ease;
}

/* Hover effect: white background */
.trp-btn:hover {
  background: #3226cd !important;
  color: #1ecb77 !important;
}

/* Secondary button */
.trp-secondary {
  background: rgba(255,255,255,0.3);
}
