/* theme/custom.css */

pre {
  position: relative;
  padding-top: 35px !important;
  border-radius: 8px;
  background-color: #1e1e1e !important;
  border: 1px solid #333;
  overflow: hidden;
}

pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #2d2d2d;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 1px solid #333;
  z-index: 1;
}

pre::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow:
    20px 0 0 #ffbd2e,
    40px 0 0 #27c93f;
  z-index: 2;
}

.buttons {
  top: 5px !important;
  right: 5px !important;
  z-index: 3;
  background: transparent !important;
}

.buttons .fa-play {
  color: #27c93f !important;
  transition: transform 0.2s;
}

.buttons .fa-play:hover {
  transform: scale(1.2);
}

code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95em;
  line-height: 1.5;
}
