.result-row {
    display: flex;
    gap: 6px;
    margin: 10px 0;
    flex-wrap: nowrap;
    justify-content: flex-end; /* Align items to the right */
  }
  
  .result-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #355E3B;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
  }
  
  .result-circle.yes {
    color: yellow;
  }
  
  .result-circle.no {
    color: red;
  }
  
  .result-circle:hover {
    transform: scale(1.1);
  }
