#floaty-button-container {
    z-index: 999999;
}

.floaty-button {
    position: fixed;
    bottom: 20px;
    padding: 15px 30px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 999999;
}

.floaty-position-bottom_right {
    right: 20px;
}

.floaty-position-bottom_left {
    left: 20px;
}

.floaty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.floaty-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floaty-modal-backdrop[hidden] {
    display: none;
}

.floaty-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 80%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000001;
    display: flex;
    flex-direction: column;
}

.floaty-modal[hidden] {
    display: none;
}

.floaty-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #333;
}

.floaty-modal-iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* WhatsApp Button Styles */
.floaty-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366; /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.floaty-whatsapp-btn.floaty-position-bottom_right {
    right: 20px;
}

.floaty-whatsapp-btn.floaty-position-bottom_left {
    left: 20px;
}

.floaty-whatsapp-btn:hover,
.floaty-whatsapp-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floaty-whatsapp-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.floaty-whatsapp-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}
