@charset "utf-8";

.row-menu-modal {
  position: fixed;
  z-index: 110;
  box-shadow: 0 2px 3px #0007;
  border-radius: 12px;
  padding: 12px 0;
  background: #282828;

  &.hidden {
    display: none;
  }

  .color-radio-container {
    display: grid;
    grid-template-columns: repeat(7, 34px);
    grid-template-rows: repeat(2, 34px);
    grid-auto-flow: column;
    place-items: center;
    margin-bottom: -4px;
    padding: 4px 12px;

    label {
      display: block;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid #fff;
      cursor: pointer;

      &:has(:checked) {
        width: 34px;
        height: 34px;
        filter: brightness(1.2);
      }

      &:nth-child(2n) {
        transform: translate(17px, -4px);
      }

      input {
        display: none;
      }
    }
  }

  button {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 36px;
    color: #f1f1f1;
    padding: 0 16px;
    background: #282828;
    font-size: 14px;

    .bi-stars {
      font-size: 16px;
    }

    .bi-trash {
      font-size: 16px;
    }
  }

  @media (hover: hover) {
    button:hover {
      filter: brightness(1.5);
    }
  }
}
