.tool-workspace.split-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.pane-left {
    position: sticky;
    top: 2rem;
}

.custom-select {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color, #e2e8f0);
    font-size: 1.1rem;
    outline: none;
    cursor: pointer;
    margin-bottom: 1rem;
    font-family: inherit;
}

.custom-select:focus {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
}

.custom-select option {
    background: #1e293b;
    color: #fff;
}

.template-description {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.mb-3 {
    margin-bottom: 1rem;
}

.w-100 {
    width: 100%;
}

.code-container {
    background: #0f172a;
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.code-container pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .tool-workspace.split-layout {
        grid-template-columns: 1fr;
    }
    
    .pane-left {
        position: static;
    }
}
