@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');

/* Theme independent style */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Nata Sans", sans-serif;
    font-weight: 200;
    font-size: 1em;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    padding: 0px 20px;
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* Button classes */

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: color 0.15s ease-in-out, 
                background-color 0.15s ease-in-out, 
                border-color 0.15s ease-in-out, 
                box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

a.btn, .btn a {
    text-decoration: none;
}
  
  .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.5);
  }
  
  .btn-blue {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  .btn-blue:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
  }
  
  .btn-blue:focus, 
  .btn-blue.focus {
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.5);
  }
  
  .btn-red {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }
  
  .btn-red:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
  }
  
  .btn-red:focus, 
  .btn-red.focus {
    box-shadow: 0 0 0 0.25rem rgba(220,53,69,.5);
  }
  
  .btn-green {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
  }
  
  .btn-green:hover {
    color: #fff;
    background-color: #146c43;
    border-color: #145c32;
  }
  
  .btn-green:focus, 
  .btn-green.focus {
    box-shadow: 0 0 0 0.25rem rgba(25,135,84,.5);
  }
  


/* Light theme style */

/* Light theme styles are not under .theme-light to ensure support for noJS. */

body {
    background-color: #96d7fd;
    color: #282828;
}

/* Dark theme style */

body.theme-dark {
    background-color: #282828;
    color: #b9e5ff;
}