@layer shell {
  .fgd-dropdown-content {
    display: block;
    position: absolute;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 16px;
    margin: 4px;

    &.dropdown-list {
      display: flex;
      flex-direction: column;
      gap: 8px;

      .dropdown-item {
        color: black;
        text-decoration: none;
        cursor: pointer;

        &:hover {
          text-decoration: underline;
        }
      }
    }

    &:not(.show) {
      display: none;
    }
  }
}
