.reporting-hero-section{
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../asset/heroone.jpg);
  /* width: 100%; */
  min-height: fit-content;
  padding: 30px 15px !important;
  display: flex;
  /* justify-content: flex-start; */
  align-items: center;
  padding: 0 20px;
  flex-direction: column;
}

.reporting-hero-section > h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
    color: aliceblue;
    margin-bottom: 10px;
}

.report-flex{
    display: flex;
    justify-content: center;
}



.report-flex > div{
    display: inherit;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    text-align: center;
    margin: 20px 0;
gap: 20px !important;
   background-color: var(--bs-link-color) ;
   padding: 5px;
   
   justify-content: center;
   color: aliceblue;
   border-radius: 10px;
   margin-left: 4px;
   
}

.report-tab{
  cursor: pointer;
}

.report-tab.active {
  color: rgb(230, 228, 228); /* Replace with your desired active state color */
  font-weight: 600;
  text-shadow: rgba(0, 0, 0, .4) 0 1px 3px;
}

.report-content {
  display: none;
}

.report-flex > div:hover{
    background-color: var( --bs-link-hover-color);
}

.report-flex > div > i {
    color: aliceblue;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.report-last{
  margin: 20px 10px;
}

.accordion-header {
  background-color: #f1f1f1;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.accordion-content {
  max-height: 0;
  height: fit-content;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  width: 80%;
  margin: auto;
}

.content-report {
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: space-around;
}

.report-content-list > li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 3px;
  padding: 3px 0;
  font-weight: 300;
}

.report-content-list > li > span > a {
  font-weight: 500;
  
   color: rgb(35, 35, 105);
}

.report-content-list > li > span > a:hover{
  text-decoration: underline;
  transition: 1000ms ease-in;
color: rgb(6, 6, 82);
}

.report-content-list > li:nth-child(even){
  background-color: var(--bs-gray-300);
}

.report-content-list > li:nth-child(odd){
  background-color: rgba(13, 110, 253,.1);
}
@media screen and (max-width: 500px) {
  .accordion-content{
    width: fit-content;
   
  }

  .list-flex{
    font-size: 13px;
     margin-left: 4px;
  }
}