.ring-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    width: 220px;
    height: 220px;
}

.spinner-background {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 10px solid #606da5;
    border-radius: 50%;
    opacity: 0.15;
    top: 0;
    left: 0;
    z-index: 1;
}

.spinner-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 10px solid transparent;
    border-top-color: #3d7a9e;
    border-right-color: #3d7a9e;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    top: 0;
    left: 0;
    z-index: 2;
}

.loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 135px;
    z-index: 3;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}