.badge {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    width: 36px;
    height: 24px;
    background-color: #f00;
    color: #fff;
 }
 .badge-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    width: 36px;
    height: 24px;
    background-color: #3aa5ff;
    color: #fff
 }
 .badge-small {
    justify-content: center;
    border-radius: 9px;
    width: 24px;
    height: 18px;
    background-color: rgb(250, 105, 105);
    color: #fff;
    font-size: 0.85em;
 }
 .badge-rect-blue {
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 0px;
   width: 36px;
   height: 24px;
   background-color: #3aa5ff;
   color: #fff
}