 .feratelheading {
     margin-top: 40px;
     margin-bottom: 2px;
 }

 .rx-list {
     display: grid;
     gap: 20px 10px;
 }

 .rx-row {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr;
     gap: 12px;
     align-items: center;
 }

 .rx-namemobile {
     display: none;
 }

 @media only screen and (max-width: 767px) {
     .rx-row {
         grid-template-columns: auto 1fr;
         /* left + right */
         align-items: stretch;
         /* allow full height */
         gap: 0 20px;
     }

     .rx-name {
         display: none;
     }

     .rx-namemobile {
         display: block;
         padding: 0;
         align-self: center;
     }

     /* left block stays left and spans all rows */
     .rx-left {
         grid-column: 1;
         grid-row: 1 / -1;
         /* span full height of the row content */
         align-self: stretch;
     }

     /* all text blocks go to the right and stack */

     .rx-row>p.rx-muted {
         grid-column: 2;
         margin: 0;
         /* cleaner stacking */
         padding: 0;
     }
 }

 .rx-left {
     display: flex;
     align-items: center;
     gap: 10px;
     min-width: 0;
 }

 .rx-badge {
     width: 20px;
     height: 20px;
     border-radius: 999px;
     border: 2px solid currentColor;
     position: relative;
     flex: 0 0 auto;
     box-sizing: border-box;
 }

 .rx-badge svg {
     position: absolute;
     left: 2px;
     bottom: 2px;
     width: 12px;
     height: 12px;
 }

 .rx-open {
     background-color: #16a34a;
     color: white;
 }

 .rx-closed {
     background-color: #dc2626;
     color: white;

 }

 .imagerx-open {
     color: #16a34a;
 }

 .imagerx-closed {
     color: #dc2626;
 }

 .rx-name {
     margin: 0;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     padding: 0;
 }

 .rx-muted {
     margin: 0;
     color: #3839379c;
     padding: 0;
 }

 /* badge overlay bottom-left */
 .rx-status {
     position: absolute;
     left: -4px;
     bottom: -4px;
 }

 /* make the existing rx-badge smaller when used as overlay */
 .rx-status .rx-badge {
     width: 14px;
     height: 14px;
     border-width: 2px;
     position: absolute;
     z-index: 100;
     bottom: -5px;
     left: -5px;
     overflow: hidden;
 }

 .rx-status .rx-badge svg {
     left: 1px;
     bottom: 1px;
     width: 9px;
     height: 9px;
 }


 /* circle holding the icon/image */
 .rx-avatar {
     width: 45px;
     height: 45px;
     border-radius: 999px;
     border: 2px solid currentColor;
     /* green/red via imagerx-* */
     position: relative;
     box-sizing: border-box;
     flex: 0 0 auto;
     background: #fff;
 }

 /* make SVG icons look nice inside */
 .rx-avatar img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     display: block;
     padding: 6px;
     /* icon inset */
     box-sizing: border-box;
 }

 /* badge anchored relative to the avatar */
 .rx-avatar .rx-status {
     position: absolute;
     left: 2px;
     /* inside bottom-left */
     bottom: 2px;
     line-height: 0;
 }

 /* smaller badge when over image */
 .rx-avatar .rx-status .rx-badge {
     width: 18px;
     height: 18px;
     border-width: 2px;
 }

 /* center the svg inside the small badge */
 .rx-avatar .rx-status .rx-badge svg {
     left: 2px;
     bottom: 2px;
     width: 10px;
     height: 10px;
 }


 .textwrapper {
     border: none;
     background: #737372;
     display: flex;
     justify-items: center;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 17px;
 }