  
  /* FLASH styling */
  .flash {
    position: fixed;
    right: 1rem;
    bottom: 0;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }


  .alert {
    color: white; 
    background-color: #F24D41;
  }

  .success {
    color: white; 
    background-color: #00895A;
  }

  .info {
    color: white;
    background-color: #2C9AF2;
  }

  .flash.hide {
    opacity: 0;
    visibility: hidden;
  }
  

  /* Chromium Progress Bars*/
  progress.green::-webkit-progress-value {
    background-color: #4caf50;
  }
  progress.yellow::-webkit-progress-value {
    background-color: #afaf4c;
  }
  progress.orange::-webkit-progress-value {
    background-color: #af7d4c;
  }
  progress.red::-webkit-progress-value {
    background-color: #af4c4c;
  }

  /* Firefox Progress Bars */
  progress.green::-moz-progress-bar {
    background-color: #4caf50;
  }
  progress.yellow::-moz-progress-bar {
    background-color: #afaf4c;
  }
  progress.orange::-moz-progress-bar {
    background-color: #af7d4c;
  }
  progress.red::-moz-progress-bar {
    background-color: #af4c4c;
  }

  canvas {
    margin-bottom: 2rem;
  }


  /* Active Location */
  #underline {
    text-decoration: underline;
  }

  /* Wraps the app and navbar to set max width and margin auto */
  .wrapper {
    max-width: 40rem;
  }

  .app {
    margin-left: 9rem;
  }

  /* Nav Bar */
  .navbar {
    padding-top: 1rem;
    margin:0;
    width: 8rem;
    height: 100vh;
    position: fixed;
    background-color: var(--pico-background-color);
    overflow-y: auto;
    transition: transform 0.3s ease;
    box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.5);
  }

  /* Top nav button */
  #today { 
    padding: .5rem 1.5rem;
  }

  .nav-text{
    margin-top: 1rem;
  }

  #hamburger {
    display: none;
    position: fixed;
    bottom: 1rem;
    right:1rem;
    z-index: 4;
  }

  /* Static Homepage Elements */
  .hero {
    padding: 5rem;
    margin-bottom: 5rem;
    text-align: center;
  }

  .site {
    max-width: 1024px;
    margin: 0 auto;
  }

  .brick {
    margin-bottom: 10rem;
  }

  .image {
    max-width: 100%;
    height: auto;
  }

  .form {
    margin: 2rem 0;
  }

  @media (max-width: 768px) {
    #hamburger {
      display: block;   
    }
    .app {
      margin-left: 0;
    }

    .navbar {
      position: fixed;
      width: 13rem;
      padding: 1.5rem;
      top: 0;
      right: 0;
      transform: translateX(100%);
      z-index: 3;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    }
    .navbar.open {
      transform: translateX(0); /* Slide it into view */
    }

    .flash {
      position: fixed;
      left: 1rem;
      bottom: 0;
      z-index: 1000;
      width: fit-content;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    
  }

  @media (max-width: 1024px) {
   .hero {
      padding: 5rem 0; 
    }
  }

  .log {
    margin-bottom: 4rem;
    
  }

  
  .quick-add-btn {
    padding: .25rem .75rem;
    margin-top: .5rem;
  }

  .log-button {
    padding: .25rem .75rem;
  }

  .small-button {
    font-size: .7rem;
    padding: .15rem .5rem;
    margin-top: .75rem;
  }

  .btn {
    padding: .5rem 1rem;
  }

  .signin {
    max-width: 20em;
  }
  

  /* Utility Classes */
  .text-center {
    text-align:center;
  }

  #tap-form {
    display: inline-block !important;
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .between {
    justify-content: space-between;
  }

  .quicks-grid {
    display: grid;
    align-items: flex-end;

    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 2rem;
  }

  .pointer{
    cursor: pointer;
  }

  .center {
    margin: 0 auto;
  }

  .index {
    margin-bottom: 5rem;
  }

  .search-form, .header {
    margin-bottom: 3rem;
  } 
