.schema-tool-container { display: flex; gap: 40px; align-items: flex-start; margin-top: 2rem; }
.schema-inputs-pane { flex: 1.2; }
.schema-output-pane { flex: 1; position: sticky; top: 20px; }

.input-group {
    background: rgba(255, 255, 255, 0.4);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #290F0F;
    margin-bottom: 20px;
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #290F0F;
}

.schema-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #290F0F;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.8rem;
    background: #fff;
    box-sizing: border-box;
}

.add-btn {
    background: #bda071;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
}

.remove-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
}

.code-wrapper {
    background: #290F0F;
    color: #f1f1f1;
    padding: 25px;
    border-radius: 12px;
    min-height: 500px;
    max-height: 800px;
    overflow-y: auto;
    border: 2px solid #bda071;
}

#schemaOutput { font-size: 0.8rem; white-space: pre-wrap; margin: 0; }
.hidden-actions { display: none; flex-direction: column; gap: 10px; margin-top: 20px; }
.action-btn { width: 100%; padding: 12px; border-radius: 6px; border: none; font-weight: 700; cursor: pointer; color: #fff; }
.copy-btn { background: #bda071; }
.google-btn { background: #4285F4; }

@media (max-width: 1000px) { .schema-tool-container { flex-direction: column; } }