/*! * Add CSS for self-assessment tool here: */
 :root {
    --niu-red: #ba0c2f;
    --niu-dark: #1c1c1c;
    --niu-light-gray: #f5f5f5;
    --niu-gold: #f2b714;
    --niu-green: #1c7035;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: var(--niu-light-gray);
    color: var(--niu-dark);
    padding: 20px;
  }

  header {
    text-align: center;
    margin-bottom: 30px;
  }

  header img {
    max-width: 200px;
    margin-bottom: 10px;
  }

  h1 {
    color: var(--niu-red);
    margin-bottom: 5px;
  }

  p.intro {
    max-width: 700px;
    margin: 0 auto 20px;
  }

  .question {
    background: white;
    padding: 15px;
    border-radius: 0rem;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }

  .options label {
    display: block;
    margin: 5px 0;
  }

  button {
    background-color: var(--niu-red);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1em;
    border-radius: 0px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
  }

  button:hover {
    background-color: #a30a28;
  }

  #results {
    display: none; /* hidden initially */
    margin-top: 25px;
    
  }

  .score-bar {
    margin: 20px auto;
    width: 100%;
    background: #ddd;
    border-radius: 0px;
    height: 30px;
    position: relative;
    overflow: hidden;
  }

  .score-fill {
    height: 100%;
    border-radius: 0px;
    width: 0;
    background: var(--niu-red);
    text-align: center;
    color: white;
    line-height: 30px;
    font-weight: bold;
    transition: width 1s ease-in-out;
  }

  .interpretation {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
  }
  
  .interpret-narrative {
      text-align: left;
  }