#historyDepoWd {
  display: flex;
  background: #272010c2;
  gap: 10px;
}

#historyDepoWd .historyDepo,
#historyDepoWd .historyWD {
  flex: 1;
  padding: 10px;
  color: #272010c2;
}

#historyDepoWd .historyTitle {
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(270deg, rgba(201, 138, 0, 1) 0%, rgba(253, 243, 35, 1) 21%, rgba(253, 243, 35, 1) 33%, rgba(211, 158, 7, 1) 44%, rgba(215, 166, 9, 1) 60%, rgba(252, 241, 34, 1) 73%, rgba(255, 247, 36, 1) 85%, rgba(201, 138, 0, 1) 100%) !important;
  display: flex;
  padding: 5px;
  justify-content: center;
  color: #001f1a;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: black;
}

#historyDepoWd .riwayatContainer {
  padding: 10px;
  background: #918502;
  color: #c38108;
  list-style: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  max-height: 210px;
  min-height: 210px;
  overflow: auto;
  margin: 0;
}

#historyDepoWd .riwayatContainer .riwayatItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

#historyDepoWd .riwayatContainer .riwayatItem:not(:last-child) {
  margin-bottom: 5px;
}

#historyDepoWd .riwayatContainer .riwayatItem .riwayatUser {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 576px) {
  #historyDepoWd {
    flex-direction: column;
    gap: 0;
  }
}