


.dynamic-link {
    color: var(--text-dark);
    cursor: pointer;
    text-decoration: none;
}

.dynamic-link:hover {
    transform: translateY(-3px);
    transition: transform 0.2s ease;
    text-decoration: underline;
}




.widget-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}




/* Code output section */
.code-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.code-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.code-title {
    font-weight: 600;
    color: var(--text-dark);
}

.copy-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--accent-green);
}

.code-output {
    background: #1a1a1a;
    color: #f0f0f0;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }
}

/* Additional XE-style elements */
.feature-badge {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-green);
    color: var(--accent-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.25rem;
}

.info-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}
