.overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F1F1F1;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    border: 4px solid #406dc6;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border-top: 4px solid #F1F1F1;
    animation: spin 1s linear infinite;
}

.info-text {
    color: black;
    font-size: 1.2rem;
    line-height: 2rem;
    margin-top: 0.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
