  /* General body */
  body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  display: grid
  justify-content: center;
  padding: 20px;
  background-color: #f5f5f5;
  color: #333;
  justify-items: center;
  }

  h1 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    color: #5a2a86;
    margin-bottom: 1em;
  }

  h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #5a2a86;
    margin-bottom: 0.5em;
  }

  p {
    font-size: 1em;
    margin: 0.5em 0;
    color: #444;
    font-weight: 600;
  }

  /* Form container */
  #skill-container {
    width: 100%;            /* fill the parent width */
    max-width: 700px;       /* but not exceed 700px */
    margin: 0 auto;         /* center horizontally inside parent */
    padding: 0 15px;        /* horizontal padding 15px, vertical padding 25px if needed */
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  }


  /* Step sections */
  .step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
  }
  .step.active {
    display: grid;
    justify-items: center;
  }

  /* Smooth fade-in */
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
  }

  /* Radio buttons modern look */
  input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #c2c2c2;
    border-radius: 50%;
    margin-right: 0.5em;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    vertical-align: middle;
  }

  input[type="radio"]:hover {
    border-color: #5a2a86;
  }

  input[type="radio"]:checked {
    border-color: #5a2a86;
  }

  input[type="radio"]:checked::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #2addff;
    border-radius: 50%;
    position: relative;
    top: 3px;
    left: 3px;
  }

  /* Radio group container */
  label {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.15s;
  }

  label:hover {
    transform: scale(1.1);
  }

  /* Buttons */
  .content_wrapper button, button {
    background-color: #867dd7;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 15px;
        font-size: 0.8em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 15px;
    }

  .content_wrapper button:hover:not(:disabled) {
    background-color: #7844b0;
  }

  button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  /* Progress bar */
  #progressBarContainer {
    width: 100%;
    background-color: #e0d6f0;
    height: 18px;
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
  }

  #progress {
    height: 100%;
    width: 0%;
    background-color: #5a2a86;
    border-radius: 12px;
    transition: width 0.3s ease;
  }

  /* Result summary */
  #results-summary, #skill-insights {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    background-color: #fafafa;
    border-left: 4px solid #5a2a86;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }

  #results-summary ul {
    list-style: none;
    margin: 0;
    background-color: antiquewhite;
    padding: 10px;
    border-radius: 15px;
}


  #results-summary ul li {
    padding: 6px 0;
    font-size: 1em;
  }
