
.popupmessagecontainer {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2147483647;
}
 
.popupmessage {
  position: relative; 
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.25);
  padding: 16px 18px;
  padding-right: 44px;
  min-width: 280px;
  max-width: min(92vw, 420px);
  text-align: center;
  font: 500 14px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}
 

.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  border-radius: 9999px;
  cursor: pointer;
  padding: 0;
  line-height: 0;
}
 
.popup-close:hover {
  background: #f1f5f9;
}
 

.popup-close img {
  width: 16px;    
  height: 16px;
  display: block;  
  object-fit: contain;
  pointer-events: none;
}
 

@media (max-width: 480px) {
  .popupmessagecontainer {
    right: 12px;
    bottom: 12px;
  }
  .popupmessage {
    padding: 14px 16px;
    padding-right: 42px;
    min-width: 240px;
  }
}