/* Full-screen loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* White semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Logo styling */
.loading-overlay img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/* Loading text styling */
.loading-overlay .loading-text {
    font-size: 36px;
    color: #333;
    letter-spacing: 5px;
}
