﻿
.upload-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    position: relative;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

    .upload-icon::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 50%;
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
        opacity: 0.5;
        animation: rotate 3s linear infinite;
        filter: blur(8px);
        z-index: -1;
    }

.upload-content {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-up {
    animation: float 1.5s ease-in-out infinite;
}

    .arrow-up svg {
        display: block;
    }

.loading-text {
    margin-top: 30px;
}

    .loading-text h3 {
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .loading-text p {
        color: #9ca3af;
        font-size: 14px;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}
