body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      margin: 0;
      padding: 20px;
      color: #222;
    }

    
    h1, h2 {
      margin-top: 0;
    }

    .section {
      border: 1px solid #000;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 20px;
    }

    .row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .label {
      min-width: 180px;
    }

    .rating-group {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .rating-group label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border: 1px solid #000;
      border-radius: 50%;
      cursor: pointer;
      font-size: 14px;
    }

    .rating-group input {
      display: none;
    }

    .rating-group input:checked + span {
      font-weight: bold;
      color: #ee6ca0;
    }

   

    .summary-box {
      background: #f9f9f9;
      border: 1px solid #000;
      border-radius: 10px;
      padding: 15px;
      white-space: pre-line;
      line-height: 1.5;
    }