/* preload.css - Critical loading styles for Vite reload spinner */
#vite-reload-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 6px solid #eee;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

#vite-reload-spinner p {
    margin: 0;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

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