    /* Icon Row Styles */
    .icon-row {
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      max-width: 100%; /* Set a max width */
            text-align:right;
  justify-content: flex-end; /* Pushes icons to the right */
  margin-bottom:0.5rem;
    }

    .icon-row .icon:hover{
      filter: grayscale(0%);
      webkit-filter: grayscale(0%);
    }

     .icon-row .icon {
      filter: grayscale(90%);
  webkit-filter: grayscale(90%);
  width: 24px;
  height: 24px;
  background-color: none;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
    }

    .icon-row .icon:hover {
      background-color: black;
    }

    /* Full-Screen Iframe Overlay */
    .iframe-overlay-topmenu {
      position: fixed;
      top: 0;
      left: auto;
      right:0px;
      width:555px;
      height: 100dvh;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .iframe-container {
      width: 90%;
      height: 90%;
      position: relative;
      background-color: white;
    }

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

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      color: white;
      border: none;
      border-radius: 30em;
      cursor: pointer;
      font-size: 18px;
      padding: 0;
      margin: 0;
      line-height: 1;
    }
    .close-btn:hover {
      background-color: #e60000;
    }
      .icon-row .icon.active{
      background-color: #420160;
}

.icon-row .icon:hover {
  border-color:#cc8bd5;
}