.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader-container.fade-out {
    opacity: 0;
}

.loader {
    text-align: center;
}

.logo-animation {
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}

.logo-text span {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: #007bff;
    animation: loading 1.5s infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes loading {
    from {
        left: -50%;
    }
    to {
        left: 100%;
    }
} 