body {
    font-family: Arial, sans-serif;
    padding: 40px;
    background: #f7f9fb;
    color: #333;
    margin: 0;
  }

  h1 {
    text-align: center;
    margin-bottom: 40px;
  }

  .position {
    margin-bottom: 40px;
  }

  .position-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
  }

  .candidate {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .portrait {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .details {
    flex-grow: 1;
  }

  .name {
    font-weight: bold;
    font-size: 1.1em;
  }

  .votes {
    font-size: 0.9em;
    color: #555;
    margin-top: 2px;
  }

  .progress {
    background-color: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
  }

  .bar {
    height: 100%;
    width: 0%;
    transition: width 0.5s;
  }

  @media screen and (max-width: 600px) {
    h1 {
      font-size: 1.5em;
    }

    .position-title {
      font-size: 1.4em;
    }

    .candidate {
      flex-direction: column;
      align-items: flex-start;
    }

    .portrait {
      margin-bottom: 10px;
    }

    .details {
      width: 100%;
    }

    .name {
      font-size: 1em;
    }

    .votes {
      font-size: 0.8em;
    }
  }