#historyDepoWd {
  display: flex;
  justify-content: space-between;
  background: #0000004d;
  max-width: 100%;
  box-sizing: border-box;
  gap: 10px;
  margin-bottom: 12px;
}

#historyDepoWd .historyDepo,
#historyDepoWd .historyWD {
  flex: 1;
  margin-top: 20px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 5px;
}

#historyDepoWd .historyTitle {
  font-weight: 600;
  font-family: sans-serif;
  font-size: 16px;
  background: #777777;
  display: flex;
  padding: 5px;
  justify-content: center;
  color: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #000000;
}

#historyDepoWd .riwayatContainer {
  padding: 10px;
  background: linear-gradient(245.59deg, #f89701 0, #ffd766 28.53%, #f89701 75.52%)!important;
  color: #fefefe;
  list-style: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  max-height: 210px;
  min-height: 210px;
  overflow-y: auto;
  margin: 0;
  border: 2px solid #11001a;
  box-sizing: border-box;
}

#historyDepoWd .riwayatContainer .riwayatItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #282729;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}

#historyDepoWd .riwayatContainer .riwayatItem:last-child {
  margin-bottom: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#historyDepoWd .riwayatContainer .riwayatItem .riwayatUser {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 576px) {
  #historyDepoWd {
    flex-direction: column;
    gap: 0;
  }
}