body {
    margin: 0;
    padding: 0;
}

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

.loading-size {
    width: 50px;
    height: 50px
}

.loading-ring {
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 50%;
    border: 3px solid var(--surface-400);
    border-left-color: transparent;
    background: transparent;
    vertical-align: middle;
    animation: loading-ring 1s linear infinite;
}

@keyframes loading-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}