.wp-block-columns.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: center;
  gap: 0;
}

.custom-block-badge {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%; /* Makes all badges fill the grid cell */
  padding: 10px;
}

.custom-block-badge-preview {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.custom-block-badge-html {
  width: 100%;
  position: relative;
}
.custom-block-badge-html textarea {
  padding-top: 45px;
  height: auto;
  overflow-y: hidden;
  font-family: monospace;
  font-size: 14px;
}
.custom-block-badge-html .copy-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 12px;
  font-size: 12px;
  background-color: #1d8ab3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
  align-items: center;
  gap: 6px;
}
.custom-block-badge-html .copy-button:hover {
  background-color: #6ca1b4;
}/*# sourceMappingURL=block.css.map */