/* Code Editor Styles */
pre[class*="language-"] {
    background: transparent;
    margin: 0;
    padding: 0;
}

code[class*="language-"] {
    text-shadow: none;
}

.code-editor {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
}

.code-editor-header {
    background: #333;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444;
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.file-name {
    color: #fff;
    font-size: 0.9rem;
}

.code-content {
    padding: 1rem;
}