/* فایل CSS اضافی برای استایل‌های frontend */
/* استایل‌های اصلی در template قرار دارند */

.spd-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spd-spin 0.8s linear infinite;
}

@keyframes spd-spin {
    to { transform: rotate(360deg); }
}

.spd-fade-in {
    animation: spd-fade-in 0.3s ease-in;
}

@keyframes spd-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spd-pulse {
    animation: spd-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spd-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

