    .code-wrapper {
      width: 100%;
      max-width: 800px;
      border-radius: 15px;
      box-shadow: 5px 4px 5px rgba(0,0,0,0.6);
      overflow: hidden;
    }

    .code-header {
      background-color: #0e111b;
      color: #e5ebfa;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 22px;
      font-size: 0.9em;
      font-weight: bold;
    }

    .divider {
      height: 1.5px;
      background-color: #2c2f3a;
      margin: 0;
    }

    .copy-btn {
      background-color: transparent;
      color: #e5ebfa;
      border: none;
      padding: 4px 1px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .copy-btn:hover {
      background-color: rgba(255,255,255,0.05);
    }

    .copy-btn img {
      width: 20px;
      height: 20px;
    }

    .code-box {
      background-color: #0e111b;
      color: #e5ebfa;
      padding: 0.6em 1em;
      font-family: monospace;
      font-size: 0.9em;
      white-space: pre-wrap;
      word-break: break-word;
      width: 100%;
    }
@media screen {
	code pre {
		overflow-x: auto;
	}

	body {
		text-align: center;
	}

	#content {
		max-width: 800px;
		display: inline-block;
		text-align: left;
		padding: 1em;
	}
}
