/* Start custom CSS *//* Keep this for the loading state */
.n8n-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #edf2f7;
    border-top: 6px solid #7646ae; /* Matches your new primary purple */
    border-radius: 50%;
    display: inline-block;
    animation: n8n-spin 1s linear infinite;
}

/* Add to WordPress Custom CSS */
#pillar-nav::-webkit-scrollbar {
    height: 3px;
    display: block !important;
}
#pillar-nav::-webkit-scrollbar-thumb {
    background: #c391ff; /* Light purple */
    border-radius: 10px;
}
#pillar-nav::-webkit-scrollbar-track {
    background: transparent;
}

@keyframes n8n-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* End custom CSS */