#loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    transition: opacity 0.5s ease; /* přidáno pro plynulý fade-out */
}

.loader {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid red;
    animation: spin 2s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
