
  #bot-float-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #054e50;
    color: white;
    font-size: 26px;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  #bot-widget-frame {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    max-width: 90vw;
    max-height: 80vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }

  @media (min-width: 1024px) {
    #bot-widget-frame {
      width: 50vw;
      height: 60vh;
    }
  }
