/* Smart Save Overlay Styles */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.spinner-container {
    width: 200px;
    /* Base size container */
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.spinner-image {
    width: 100%;
    height: auto;
    max-width: 150px;
    /* Responsive limit */
}

/* Responsive adjustment for 50% requested */
@media (max-width: 768px) {
    .spinner-container {
        width: 50%;
        /* 50% responsive */
    }
}

.loading-text {
    color: #333;
    font-size: 1.4em;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-top: 10px;
}