
#loadingCircle {
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: rotate(-90deg); /* Rotate circle to start loading from top */
}

@keyframes loadingAnimation {
    from { stroke-dashoffset: 314; }
    to { stroke-dashoffset: 0; }
}


.loadingPath {
    stroke-dasharray: 314; /* Circumference of the circle (C = πd, d=100px) */
    stroke-dashoffset: 314;
    animation: loadingAnimation linear forwards; /* Removed the nSeconds placeholder */
    fill: none;
    stroke-width: 10; /* Adjust for border thickness */
    stroke-linecap: round; /* For rounded stroke edges */
}