/* Button styles */
.widget-button-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #009688!important; /* Replace with your brand color */
  color: white!important;
  padding: 15px 20px!important;
  border-radius: 25px!important;
  font-weight: 600!important;
  border: none!important;
  cursor: pointer!important;
  outline: none!important;
  transition: all 0.3s ease-in!important;
  z-index: 99!important;  
  font-size: 16px!important;
  line-height: 16px!important;
  box-shadow: none!important;
  text-transform: none!important;
}

.fixed {
  position: fixed!important;
  left: 0!important;
  right: 0!important;
  top: 0!important;
}

.widget-button-trigger:hover {
  transform: scale(1.05)!important;
  background: #109d90!important;
}

/* Modal overlay styles */
.widget-modal-overlay {
  position: fixed!important;
  top: 0!important;
  left: 0!important;
  width: 100%!important;
  height: 100%!important;
  background: rgba(0, 0, 0, 0.5)!important;
  z-index: 9998;
}

/* Modal content styles */
.widget-modal-content {
  position: fixed!important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 600px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

/* Close button styles */
.widget-close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.widget-close-button:hover {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
} 

/* Close icon styles */
.widget-close-icon {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: white;
}

/* Iframe styles */
.widget-iframe {
  width: 100%;
  height: 100%;
  border: none;
}