﻿.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.spinner {
    width: 56px;
    height: 56px;
    border: 4px solid #eee;
    border-top: 4px solid #FAC50D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-logo {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
