  .code-box {
    position: relative;
    padding: 15px;
    margin-left: 10px;
    border: 1px solid #c4c4c4;
    background-color: #fffedd;
    max-height: 300pt;
    overflow: scroll;
  }

  .copy-buttons {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
    user-select: none;
  }

  .copy-btn {
    background: #eee;
    border: none;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s, background 0.2s;
    user-select: none;
  }
  .copy-btn:hover {
    opacity: 1;
    background: #ddd;
  }

.exampleLabel {
	display: none;
}

