body { background-color: white; } .loading-container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; /* Full-screen loader */ background-color: #f7f9fc; /* Light background */ } .spinner { border: 8px solid #f3f3f3; /* Light grey border */ border-top: 8px solid #1e90ff; /* Accent color for spinning part */ border-radius: 50%; width: 60px; height: 60px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .loading-container p { margin-top: 20px; font-size: 18px; color: #2c3e50; /* Dark text for contrast */ font-weight: 500; }