  .overlay {
      position: fixed;
      bottom: 0;
      width: 100%;
      height: calc(100vh - 80px);
      background: rgb(255, 255, 255);
      color: white;
      transition: transform 0.5s ease;
      z-index: 9980;
      transform: translateY(100%);
      display: flex;
      background-color: red;
    }

    .overlay.active {
      transform: translateY(0);
    }

    .can-exit-overlay {}

    .showOverlayBtn {}

    .showOverlayBtn:hover {
      cursor: pointer;
    }

    .iframe-container {
      flex: 1;
      margin: 1rem;
      background-color: #ffffff;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
      display: flex;
      position: relative;
    }

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

    .exit-button {
    }
    
    .overlay-button {
      cursor: pointer;
    }

    .overlay.can-exit-overlay .exit-button {
      display: block;
    }

    .overlay-buttons-container {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      flex-direction: row-reverse; /* Makes buttons flow from right to left */
      gap: 10px; /* space between buttons */
      z-index: 1000;
    }
    
    @media (max-width: 767px) {
           .iframe-container {
              width: 80vw;
              flex: 1;
              margin: 1rem;
              background-color: #ffffff;
              border-radius: 1rem;
              overflow: hidden;
              box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
              display: flex;
              position: relative;
        }
    
        .iframe-container iframe {
            border: none;
            width: 100%;
            height: 80vh;
        }
         .overlay-buttons-container {
    flex-direction: column;
    align-items: flex-end; /* Align buttons to the right still */
  }
    }