.reports .nav-pills {
  background: #e9e9e9;
  border-radius: 24px;
  padding: 2px;
}
.reports .nav-pills .nav-link {
  font-weight: bold;
  color: #555;
}
.reports .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: white;
  border-radius: 24px;
}

.reports-list {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 10px;
}
.reports-list > div {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: start;
  padding: 1rem;
}
.reports-list div img {
  width: 64px;
  flex-grow: 0;
  margin-right: 1rem;
}
.reports-list div h4 {
  font-size: 14px;
  font-weight: bold;
}
.reports-list div h5 {
  font-size: 12px;
  font-weight: 500;
  color: #555;
}
.reports-list div p {
  color: #049fda;
  font-size: 13px;
  margin-bottom: 0;
  display: block;
}

@media screen and (max-width: 768px) {
  .reports .nav-pills {
    padding: 2px;
    background: none;
  }
  .reports .nav-pills .nav-link {
    font-weight: bold;
    color: #555;
  }
  .reports .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: white;
    border-radius: 0;
    border-bottom: 2px solid blue;
  }
  .reports-list {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 6px;
  }
  .reports-list > div {
    padding: 0.5rem;
  }
  .reports-list div img {
    margin-right: 0.65rem;
    width: 40px;
  }
  .reports-list div p {
    display: none;
  }
}