

  
.output-events {
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  gap: 4px;
}

.color-palette .item {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 250ms ease-in-out;
}

.color-palette .item:hover {
  transform: scale(1.1);
}



/* ===== Scroll Throttle і Debounce ===== */

.cta {
    /* text-align: center; */
    font-weight: 700;
}
.cta::before,
.cta::after {
  content: "\2193";
  margin-left: 4px;
  margin-right: 4px;
}


.event-counter {
    position: sticky;
    top: 100px;
    display: flex;
    justify-content: start;
  }

.throttle {
  justify-content: center;
}


.debounce {
  justify-content: end;
}


  .box {
    display: inline-flex;
    flex-direction: column;
    /* align-items: center; */
    align-items: center;
    padding: 12px;
    border: 1px solid #03a9f4;
    border-radius: 4px;
  }

  .event-counter p {
    margin: 0;
    font-size: 16px;
  }
  
  .event-counter span {
    font-size: 48px;
    font-family: monospace;
}