/* Loader Styles */
.loader {
  display: flex; /* Use flexbox for the loader */
  flex-direction: column; /* Stack spinner and text vertically */
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
}

.loader p {
  margin: 10px 0 0 0; /* Add some margin to the top of the text */
  color: #fff; /* Change text color if needed */
  text-align: center; /* Center text */
}