/* Main application styles */

/* Animations */
@keyframes spinner {
    to {transform: rotate(360deg);}
  }
  
  .spinner {
    animation: spinner 1s linear infinite;
  }
  
  /* Typography */
  .prose img {
    max-width: 100%;
    height: auto;
  }
  
  /* Layouts */
  .min-h-screen {
    min-height: 100vh;
  }
  
  /* Custom backgrounds and colors that might extend Tailwind */
  .bg-opacity-75 {
    --tw-bg-opacity: 0.75;
  }
  
