/*
 * Copyright OpenSearch Contributors
 * SPDX-License-Identifier: Apache-2.0
 */
.enhanced-accordion {
  &__arrow {
    transition: rotate 0.3s;
    rotate: 0deg;

    &--open {
      rotate: 90deg;
    }

    &--hidden {
      visibility: hidden;
    }
  }

  &__title {
    padding: 12px 16px;
  }

  &__extra {
    padding-right: 16px;
  }

  &__button {
    width: 100%;
    height: 100%;
    min-height: 50px;
  }
}