/* ZapUpload Theme - Custom CSS */
/* This file is editable from the admin panel */
/* Add your custom styles here */

/* Example custom styles - remove or modify as needed */

/*
.custom-header {
    background: linear-gradient(135deg, var(--electric-cyan), var(--golden-orange));
    color: white;
    padding: 2rem 0;
}

.custom-card {
    border-left: 4px solid var(--electric-cyan);
    transition: all 0.3s ease;
}

.custom-card:hover {
    border-left-color: var(--golden-orange);
    transform: translateX(5px);
}

.lightning-text {
    position: relative;
    color: var(--electric-cyan);
    font-weight: bold;
}

.lightning-text:before {
    content: '⚡';
    position: absolute;
    left: -1.5rem;
    color: var(--golden-orange);
    animation: lightning-pulse 2s infinite;
}

@keyframes lightning-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
*/