.contextual-region.settings-tray-editable {
    position: fixed;
    bottom: 1rem;               /* Abstand vom unteren Rand */
    left: 50%;                  /* Horizontal zentrieren */
    transform: translateX(-50%);
    z-index: 9999;              /* Immer oben */
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 9999px;      /* Runde Kapseloptik */
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.contextual-region.settings-tray-editable a {
    color: #494949;
}
  
  /* Kontext-Links als Buttons */
  .contextual-region.settings-tray-editable ul.contextual-links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .contextual-region.settings-tray-editable ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  
  /* Einzelne Links als Buttons */
  .contextual-region.settings-tray-editable ul li a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
  }
  
  .contextual-region.settings-tray-editable ul li a:hover {
    background-color: #c9a96e;  /* z. B. Goldfarbe wie Hero */
    color: #000;
  }

  .contextual-region.settings-tray-editable ul li a:active {
    background-color: #c08517;  /* z. B. Goldfarbe wie Hero */
    color: #000;
  }

  .contextual-region.settings-tray-editable ul li a.is-active {
    background-color: #c08517;  /* z. B. Goldfarbe wie Hero */
    color: #000;
  }

  /* Optional: Trigger-Button verstecken */
  .contextual-region.settings-tray-editable .trigger {
    display: none;
  }
  
  /* Optional: Responsive – auf Mobile kleiner */
  @media (max-width: 768px) {
    .contextual-region.settings-tray-editable ul.contextual-links li a {
      font-size: 0.75rem;
      padding: 0.3rem 0.6rem;
    }
  }