body {
      font-family: Arial, sans-serif;
      margin: 20px;
      background: #f8f9fa;
    }
    h1 {
      text-align: center;
    }
    .rating-section {
      background: #fff;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .criteria {
      margin-bottom: 10px;
    }
    .criteria h3 {
      margin-bottom: 5px;
    }
    .options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .bar-track {
      background: #e0e0e0;
      height: 12px;
      width: 100px;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      margin: 0 5px;
    }
    .bar-fill {
      height: 100%;
    }
    .bar-fill.poor { background-color: #dc3545; }
    .bar-fill.fair { background-color: #fd7e14; }
    .bar-fill.good { background-color: #ffc107; }
    .bar-fill.verygood { background-color: #20c997; }
    .bar-fill.excellent { background-color: #28a745; }
    .bar-percent {
      min-width: 40px;
    }
    .poor-fair-summary {
      margin-top: 10px;
      font-size: 14px;
      color: #333;
    }
    .comment-section {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .comment-list {
      margin-top: 15px;
    }
    .comment {
      padding: 10px;
      border-bottom: 1px solid #ddd;
    }