body {
    margin: 0;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1); /* Semi-transparent green background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it covers all other elements */
}

.loading-spinner {
    border: 16px solid #f3f3f3; /* Light gray background */
    border-top: 16px solid #4caf50; /* Green color */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite; /* Spinner animation */
}

.loading-text {
    margin-top: 20px;
    color: white;
    font-size: 24px;
    font-family: Arial, sans-serif; /* Use a clean font */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
