/* 为代码块容器添加滚动 */
.scrollable-code .highlight {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e1e4e5;
    border-radius: 4px;
}

/* 确保代码区域本身也能滚动 */
.scrollable-code .highlight pre {
    margin: 0;
    padding: 10px;
}

/* 可选：添加漂亮的滚动条样式 */
.scrollable-code .highlight::-webkit-scrollbar {
    width: 8px;
}

.scrollable-code .highlight::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scrollable-code .highlight::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.scrollable-code .highlight::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}