/* Force exact icon look */
#cstm-phone_link svg {
  width: 20px !important;
  height: 20px !important;
  display: block;
}

/* CRITICAL FIX */
/* #cstm-phone_link svg path {
  fill: #ffffff !important;
  stroke: #ffffff !important;
  stroke-width: 0.2 !important;
} */

/* Remove any theme interference */
/* #cstm-phone_link * {
  fill: #ffffff !important;
  stroke: #ffffff !important;
} */

/* Overlay (light dim like screenshot) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #f3f3f3;
  padding: 25px 30px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Title */
.popup-box h3 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Contact Items */
.popup-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
  color: #555;
  font-size: 14px;
}

/* Icons inside popup */
.popup-item svg {
  width: 16px;
  height: 16px;
  /* fill: #777; */
}

/* Close button (top right black rounded) */
#closePopup {
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  color: #fff;
  border: none;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
}