.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6d6d6da3;
    z-index: 100;
}

.loader {
    max-width: 65%; /* Ensures the loader doesn't exceed 80% of the viewport width */
    height: auto;
}

/* Optional: Add media queries for finer control */
@media (max-width: 768px) {
    .loader {
        max-width: 85%; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .loader {
        max-width: 100%; /* Further adjust for very small screens */
    }
}
