/* Makes our label white. */
.blocklyTreeLabel {
    color: #fff;
  }
  /* Adds padding around the group of categories and separators. */
  .blocklyToolboxContents {
    padding: 0.5em;
  }
  /* Adds space between the categories, rounds the corners and adds space around the label. */
  .blocklyTreeRow {
    width: 160px;
    padding: 3px;
    margin-bottom: 0.5em;
    border-radius: 3px;
    border-color: #D4D4D4;
  }
  /* Changes color of the icon to white. */
  .customIcon {
    padding: 1px;
    color: #fff;
  }
  .blocklySvg {
    background-color: #262B36 !important;
  }

.blockly-number-field {
  touch-action: manipulation;
}

.blockly-text-field {
  touch-action: manipulation;
}

/* Stacks the icon on top of the label. */
  .blocklyTreeRowContentContainer {
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .blocklyTreeRow {
    height: initial;
    padding-left: 3px !important;
  }

  .blocklyTreeLabel{
    padding-top: 2.5px;
    margin-left: 3px;
    font-weight: 500;
  }

  .minimalist-renderer.classic-theme .blocklyFlyoutLabelText{
    font-weight: 600;
    font-size: 16px;
  }

  /* 만일 라벨을 커스텀하게 만들고 싶으면 아래와 같이 하면된다.*/
  .myLabelStyle>.blocklyFlyoutLabelText {
    font-style: italic;
    fill: green;
    font-size: 100px;
  }

  .blocklyTreeSeparator{
    margin-bottom: 10px;
  }

@keyframes iconPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4); /* 중간에 아이콘 크기를 20% 늘립니다. */
  }
  100% {
    transform: scale(1);
  }
}

.icon-animate-pop {
  animation: iconPop 0.5s ease;
}
