/* CSS FOR LISTS */
.req-list-cont {
  .label-success,
  .label-fail {
    padding: 0.25rem 0.5rem;
    border: 1px solid black;
    border-radius: 1rem;
  }
  .label-success {
    color: #fff;
    background-color: rgb(20, 107, 20);
    border-color: green;
  }
  .label-fail {
    color: #fff;
    background-color: rgb(107, 20, 20);
    border-color: rgb(128, 0, 0);
  }
}
