/* RESET STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* BODY & CONTAINER */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f8;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
  }
  
  /* GRID HEADER */
  .grid-header {
    display: grid;
    grid-template-columns: 3fr 5fr 3fr;
    margin-bottom: 15px;
  }
  
  .grid-header .scale-labels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    font-weight: normal;
    color: #000;
    font-size: 12px;
  }
  
  /* QUESTION ROWS */
  .question-row {
    display: grid;
    grid-template-columns: 3fr 5fr 3fr;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    background: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: background 0.3s, box-shadow 0.3s;
  }

  .instructions {
    text-align: center;
    color: #333;
    margin: 0 auto 20px auto;
    font-size: 14px;
    line-height: 1.5;
    max-width: 600px;
  }
  
  .question-row:hover {
    background: #f0f4fd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .left-anchor,
  .right-anchor {
    /* font-size: 0.9em; */
    font-size: 12px;
    color: #555;
    padding: 10px;
  }
  
  .left-anchor {
    text-align: center;
  }
  
  .right-anchor {
    text-align: center;
  }
  
  /* OPTIONS / RADIO BUTTONS */
  .options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
  }
  
  .options label {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  input[type="radio"] {
    appearance: none;
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
  }
  
  input[type="radio"]:hover {
    border-color: #F26522;
  }
  
  input[type="radio"]:checked {
    background-color: #F26522;
    border-color: #F26522;
  }
  
  input[type="radio"]::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
  }
  
  input[type="radio"]:checked::after {
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* BUTTON STYLE */
  button {
    background-color: #F26522;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    display: block;
    margin: 30px auto 0;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  button:hover {
    background-color: #F26522;
    transform: translateY(-2px);
  }
  
  button:active {
    transform: translateY(0);
  }
  
  /* RESULTS BOX */
  #result {
    margin-top: 30px;
    padding: 20px;
    background: #f0fdf4;
    color: #333;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 18px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .question-row, .grid-header {
      grid-template-columns: 1fr;
    }
  
    .left-anchor,
    .right-anchor {
      text-align: center;
      margin-bottom: 10px;
    }
  
    .options {
      grid-template-columns: repeat(5, 1fr);
      margin-bottom: 15px;
    }
  }
  