@import '../../assets/styles/colors';

.storybook-menu-option-container {
  cursor: pointer;

  .storybook-icon {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}
.storybook-option-card {
  z-index: 1;
  position: fixed;
  right: 0;
  outline: none;
  background: $white_1 no-repeat padding-box;
  box-shadow: 0px 0px 6px $shadow;
  border-radius: 5px;
  opacity: 1;
  margin-top: 5px;
  padding: 16px 0;
  .options-wrapper {
    overflow: auto;
    min-height: 20px;
    max-height: 175px;
    min-width: 150px;
    opacity: 1;
    &::-webkit-scrollbar {
      border-radius: 10px;
      background-color: $grey_3;
      width: 4px;
      margin-left: 5px;
    }
    &::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background-color: $grey_1;
      width: 6px;
      margin-left: 5px;
    }
    .options {
      cursor: pointer;
      display: flex;
      align-items: center;
      padding-left: 8px;
      padding-right: 8px;
      line-height: 35px;
      gap: 16px;

      &:hover {
        background-color: $primary;
        .options-label {
          color: $white;
        }
      }
    }

    .disable-option {
      opacity: 0.5;
      cursor: no-drop;
      label {
        cursor: no-drop;
      }
    }
  }
}
