@layer components {
  .actions-dropdown {
    position: relative;
    display: inline-block;
  }

  .actions-dropdown__toggle {
    cursor: pointer;
    list-style: none;
  }

  .actions-dropdown__toggle::-webkit-details-marker {
    display: none;
  }

  .actions-dropdown__toggle::after {
    content: "▾";
    margin-left: 0.5rem;
  }

  .actions-dropdown[open] .actions-dropdown__toggle::after {
    content: "▴";
  }

  .actions-dropdown__menu {
    position: absolute;
    right: 0;
    z-index: 10;
    min-width: 12rem;
    margin: 0.25rem 0 0;
    padding: 0.25rem 0;
    list-style: none;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }

  .actions-dropdown__menu form {
    margin: 0;
  }

  .actions-dropdown__item {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    cursor: pointer;
  }

  .actions-dropdown__item:hover,
  .actions-dropdown__item:focus {
    background: #f5f5f5;
  }

  .actions-dropdown__item--danger {
    color: #b00020;
  }
}
