﻿#loader-spesify {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B7A4B, #0E9E63);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999999;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    opacity: 0;
    animation: fadeInLoader 1s ease-in-out forwards;
}

@keyframes fadeInLoader {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logo-animated {
    width: 300px;
    margin-bottom: 25px;
    animation: pulse 2s infinite !important;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    opacity: 1 !important;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 10px;
}

.loader-text {
    margin-top: 18px;
    font-size: 18px;
    opacity: 0;
    animation: fadeInText 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
