<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Centered Grid */
.max-w-screen-md {
    margin: 0 auto;
    max-width: 1024px;
}

/* Card Styles */
.n8n-automation-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.n8n-automation-card:hover {
    transform: scale(1.05);
}

/* Image Styles */
.n8n-automation-card img {
    border-radius: 0.5rem;
    width: 100%;
    max-width: 256px;
    height: auto;
    object-fit: cover;
}

/* Title Styles */
.n8n-automation-card h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.n8n-automation-card h2:hover {
    color: #0073aa;
}

/* Description Styles */
.n8n-automation-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Button Styles */
.n8n-automation-card button {
    background-color: #0073aa;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.n8n-automation-card button:hover {
    background-color: #005f8a;
}

.n8n-automation-card .flex-1 {
    display: inline-block;
    width: 60%;
}

.n8n-automation-card .flex-shrink-0 {
    display: inline-block;
    width: 39%;
}

.n8n-library .entry-content, .n8n-library .entry-content p, .n8n-library .entry-summary, .n8n-library .entry-summary p, .n8n-library .workflow-preview-container{
    width: 100%;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media only screen and (min-width: 768px) {
    .n8n-library .entry-content, .n8n-library .entry-summary {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 0px;
    }
}

article.n8n-library  {
    margin:0 auto;
    max-width: 1024px;
    padding: 0 20px;
    display: block;
}
article.n8n-library header.entry-header {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 20px;
    border-bottom: 1px solid #eaeaea;
    margin-top: 2rem; 
}
article.n8n-library .entry-content {

    width: 100%;
    max-width: 1024px;
    display: block;
    gap: 2rem;
}</pre></body></html>