/* NodeX AI - Frontend Runner Styles */
.nodex-frontend-runner {
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 1.5rem;
    color: #f4f4f5;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 600px;
    margin: 2rem auto;
}

.nodex-frontend-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nodex-frontend-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #a1a1aa;
}

.nodex-frontend-textarea {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 0.75rem;
    padding: 0.75rem;
    color: #f4f4f5;
    font-family: monospace;
    font-size: 0.875rem;
    min-height: 150px;
    resize: vertical;
}

.nodex-frontend-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    ring: 2px solid rgba(79, 70, 229, 0.2);
}

.nodex-frontend-button {
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.nodex-frontend-button:hover {
    background: #4338ca;
}

.nodex-frontend-result {
    margin-top: 1.5rem;
    background: #000;
    border: 1px solid #27272a;
    border-radius: 0.75rem;
    padding: 1rem;
    font-family: monospace;
    font-size: 0.8125rem;
    color: #10b981;
    overflow-x: auto;
    min-height: 50px;
}

/* Auth Cards */
.nodex-auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.nodex-auth-card {
    text-align: center;
    max-width: 400px;
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #27272a;
}

.nodex-auth-card-icon {
    color: #4f46e5;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.nodex-auth-card h2 {
    color: #f4f4f5;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.nodex-auth-card p {
    color: #a1a1aa;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.nodex-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.nodex-btn-primary {
    background: #4f46e5;
    color: white;
}

.nodex-btn-primary:hover {
    color: white;
    background: #4338ca;
}

.nodex-btn-secondary {
    background: #27272a;
    color: #f4f4f5;
    border: 1px solid #3f3f46;
}

.nodex-btn-secondary:hover {
    background: #3f3f46;
}
