/* Body ko full height aur flexbox se center align karna */
body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center;     /* Vertical center */
  background-color: #f0f0f0;
}

/* Loader style */
.loader {
  border: 8px solid #f3f3f3; /* Light grey background */
  border-top: 8px solid #ef5777;  /* Red border for the top part */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
