.main { display: flex; flex-direction: column; gap: 30px; align-items: center; } .users { display: flex; flex-direction: column; gap: 15px; } .user { display: flex; flex-direction: row; gap: 10px; align-items: center; border: 1px dotted #000; padding: 3px 8px 3px 8px; margin: 3px; } .user-card { display: flex; flex-direction: column; } .user-name { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; } .user-info { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; } .user-classification { display: flex; flex-direction: column; gap: 3px; } input.radio-classify { display: none; } input.radio-classify + label { border: 1px solid #000; padding: 2px; text-align: center; } input.radio-spam:checked + label { border: 1px solid #d00400; background: #d00400; color: #fff; } input.radio-legit:checked + label { border: 1px solid #048e02; background: #048e02; color: #fff; } .score { padding-left: 3px; padding-right: 3px; width: 2.8em; text-align: center; flex-grow: 0; flex-shrink: 0; } .score-High { background: #ff696b; } .score-Mid { background: #ffa769; } .score-Low { background: #5fd770; }