#open-iframe-modal {
  width:auto;
  line-height:initial;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
}

#iframe-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#iframe-modal-overlay.show {
  display: flex;
}

.iframe-modal-container {
  position: relative;
  background: white;
  width: 90%;
  max-width: 600px;
  height: 90%;
  padding: 5px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.iframe-window {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-close-button {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
#iframe-placeholder{
  height:100%;
}
.tooltip-wrapper {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 10;
}

.tooltip-wrapper .tooltip-text {
position: absolute;
bottom: 75px;
right: 0;
background: rgba(0, 0, 0, 0.85);
color: white;
padding: 6px 10px;
border-radius: 4px;
font-size: 14px;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
z-index:11;
}

.tooltip-wrapper:hover .tooltip-text {
opacity: 1;
}
/* Tablets and small screens */
@media (max-width: 480px) {
#open-iframe-modal {
  padding: 12px 16px;
  font-size: 16px;
}
.tooltip-wrapper .tooltip-text {
  bottom: 55px;
}
}