/* object-creator.css */
.object-creator-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.object-creator-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.object-creator-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.object-creator-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.object-creator-input {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
}

.object-creator-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(124, 124, 124, 0.2);
}

.object-creator-button {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--panel-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    align-self: flex-end;
}

.object-creator-button:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.object-creator-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}