.progress-ring-container {
    display: grid;
    visibility: hidden;
    width: 30px;
    height: 30px;
    margin: auto;
}

.progress-ring {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid var(--my-border-color);
    border-radius: 50%;
    animation: 'none';
    box-sizing: border-box;
    border-right: 4px solid transparent; /* Keeps the ring appearance */
    border-bottom: 4px solid transparent; /* Keeps the ring appearance */
}

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