.poll-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.45);
  z-index:99999;
}

.poll-box{
  background:#fff;
  padding:25px;
  border-radius:12px;
  width:320px;
  text-align:center;
}
.save-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
    z-index: 99999 !important;
}

/* modal box */
.save-box{
  background:#ffffff;
  padding:30px 35px;
  border-radius:16px;
  width:360px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  animation:popupScale .25s ease;
    
}

/* icon */
.save-icon{
  font-size:32px;
  color:#4CAF50;
  margin-bottom:10px;
}

/* title */
.save-box h4{
  font-size:22px;
  font-weight:600;
  margin-bottom:8px;
  color:#222;
}

/* description */
.save-box p{
  font-size:15px;
  color:#666;
  margin-bottom:22px;
}

/* button */
.btn-save-ok{
  background:#5B6EF5;
  border:none;
  padding:10px 26px;
  border-radius:10px;
  color:white;
  font-weight:500;
  cursor:pointer;
  transition:all .2s ease;
}

.btn-save-ok:hover{
  background:#4456e5;
  transform:translateY(-1px);
}

/* animation */
@keyframes popupScale{
  from{
    transform:scale(.9);
    opacity:0;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}
.save-box{
  position: fixed;                
  top: 30%;                   
  left: 35%;                    

}

.toast-msg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 99999;
  opacity: 0.95;
}
/* location */
.publisher-location-inline{
  font-weight: normal;
  color: #65676b;
}

.publisher-location-inline b,
.location-name{
  color: #050505;
  font-weight: 600;
}

/* feeling / activity */
.publisher-feeling-inline{
  font-weight: normal;
  color: #65676b;
  margin-left: 4px !important;
}


.publisher-feeling-inline .feeling-text{
  color: #050505;
  font-weight: 600;
}

.publisher-feeling-inline .feeling-icon{
  margin: 0 2px;
}

/* common spacing */
.publisher-header span{
  margin-left: 0 !important;
}

.location-prefix{
  font-weight: normal !important;
  color: #65676b;
  font-size: 12px;
}
.publisher-feeling-inline.x-hidden{
  display:none !important;
}

.publisher-location-inline.x-hidden{
  display:none !important;
}

/* Twemoji / twa icons */
.publisher-feeling-inline .feeling-icon i,
.publisher-feeling-inline .feeling-icon .twa{
    font-size: 8px !important;
}

/* ===============================
   POLL CONTAINER
================================ */
.publisher-poll-preview {
  margin-top: 12px;
}

.poll-option-preview{
    position: relative;
    padding: 12px 16px 12px 42px !important; /* left room for icon */
    background: #ffffff;
    border: 1px solid #e4e6eb;
    border-radius: 14px;
}

.poll-option-preview::before{
    content: "★";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5b301;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

/* Hover = slight lift */
.poll-option-preview:hover {
  background: #f7f8fa;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Active = strong highlight */
.poll-option-preview.active {
  border-color: #1877f2;
  background: #e7f3ff;
}

/* Text */
.poll-option-text {
  font-size: 14px;
  font-weight: 500;
  color: #050505;
}
/* Remove grey textarea background in colored mode */
.publisher.colored-active .publisher-textarea-wrap textarea,
.publisher-message.colored textarea,
.publisher-message.colored .js_publisher-scraper {
    background: transparent !important;
    background-color: transparent !important;
}
.publisher.colored-active .publisher-header .publisher-username,
.publisher-message.colored .publisher-header .publisher-username {
    margin-left: 0 !important;
}
