*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
article section.LaporanKeuangan {
  padding: 5rem;
  text-align: center;
  background-image: url("https://res.cloudinary.com/dnhcz1uds/image/upload/v1718075055/Hijau_l1hwub.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.LaporanKeuangan .itemLaporan {
  margin: 3rem;
}
.LaporanKeuangan .itemLaporan .openModal button {
  font-size: 24px;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color:#006769;
  color: white;
  border: hidden;
}
.itemLaporan .openModal {
  cursor: pointer;
  background-color: transparent;
  border: hidden;
}

.itemLaporan .modal-warpper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(15 15 15 / 30%);
  display: none;
  z-index: 9999;
}
.itemLaporan .modal {
  border: 1px solid #ffff;
  width: 60%;
  border-radius: 8px;
  background: white;
  height: auto;
  box-shadow: 3px 3px 3xp #0000002e;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.itemLaporan .modal-header {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #cfcfcf;
  padding: 15px 15px;
  text-align: center;
}
.itemLaporan .modal-body {
  padding: 2rem;
}
.itemLaporan .modal-footer {
  border-top: 1px solid #cfcfcf;
  padding: 15px 15px;
  text-align: left;
}
.itemLaporan .modal-footer > button {
  width: 75px;
  height: 30px;
  border-radius: 3px;
  color: white;
  letter-spacing: 0.5px;
  font-weight: bold;
  cursor: pointer;
}
.itemLaporan .tutup-btn {
  background: blue;
  border: 1px solid blue;
}