.text-green {
    color: green !important;
}
.text-red {
    color: red !important;
}
.text-blue {
    color: blue !important;
}
.text-gold {
    color: gold !important;
}

/* assets/style.css */

/* Show main content on larger screens */
@media (min-width: 769px) {
  #main-content {
    display: block;
  }
  #mobile-unsupported {
    display: none;
  }
}


/* Mobile view for small screens */
@media (max-width: 768px) {
  #main-content {
    display: none;
  }
  #mobile-unsupported {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #003366; /* signature blue */
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  #mobile-unsupported img {
    max-width: 150px;
    margin-bottom: 20px;
  }
  #mobile-unsupported h1 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  #mobile-unsupported p {
    font-size: 1.2em;
    line-height: 1.5;
  }
}

.page {
  /* --- FADE IN --- */
  animation: pageEnter 320ms ease-out both;
  will-change: opacity, transform;        /* smoother on low-end GPUs */
}

/* Keyframes can be anything: slide, scale, etc. */
@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


