body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    background: white;
    color: #333;
    font-family: 'IRANSansWeb', Arial, sans-serif;
}

.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.loading-container svg {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loading-container svg {
        max-width: 95vw;
        max-height: 50vh;
    }
}