/* Loader Container Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.loader-container.show {
    opacity: 1;
    visibility: visible;
}

/* SVG Loader Styles */
.loader-svg {
    width: 100px;  /* Set initial size */
    height: 100px;
    max-width: 25vw; /* Responsive scaling */
    max-height: 25vh;
}
