/* Custom styles for the application */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f4f8;
  /* Softer background color */
}

/* Custom spinner animation */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #3498db;
  /* A nice blue for the spinner */
  animation: spin 1s ease infinite;
}

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

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

/* Gradient for the main button */
.btn-gradient {
  background-image: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.btn-gradient:hover {
  background-image: linear-gradient(to right, #2563eb, #1e40af);
}

/* Custom shadow for a lifted effect */
.card-shadow {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}