.sidebar-ecommerce {
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    /* Indigo/Violet Dark Theme */
}

.card-ecommerce {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f8fafc;
    transition: all 0.3s ease;
}

.card-ecommerce:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: #c7d2fe;
    /* Light indigo border on hover */
}

/* Custom Scrollbar for modern apps */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #a5b4fc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific styling for automation nodes mockups */
.n8n-node {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    background: white;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.n8n-line {
    position: absolute;
    background-color: #cbd5e1;
    z-index: 1;
}