* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  .title {
    font-size: 3rem;
    margin: 2rem 0rem;
  }
  
  .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease; 
  }
  
  .answer p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 1.4rem;
  }
  
  .faq.active .answer {
    max-height: 300px;
    animation: fade 0.5s ease-in-out;
  }
  
  .faq.active svg {
    transform: rotate(180deg);
  }
  
  svg {
    transition: ease-in;
    padding: 0 5px 0 0;
    margin: 0 5px 0 0;
  }

  .bfvDataHeader {
    text-align: center;
    border: 1px solid green;
  }

 .container-fluid {
  padding: 0 !important;
  margin-right:auto;
  margin-left:auto;
  margin-bottom:1px;
  font-size: 0.75rem;
  background-color: #cbdef3;
}
  
  @keyframes fade {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }


  .flag-img {
    height: 2.25rem;
    width: auto;
    margin: auto;
    justify-content: center;
    align-items: center;
  }

  .betfairIcon-img {
    height: 1.5rem;
    width: auto;
    margin: auto;
  }


/*Styling for Odds table*/

  .matchTable {
    width:100%;
    height:100%;
    overflow-x:auto;
    margin-top: 0px;
    border-spacing: 0px;
  }
  
  .matchTableHead{
    padding: 0px;
    text-align: center;
    font-weight: bold;
    font-size: 0.5rem;
    border: solid 1px green;
    background-color: #cbdef3;
  }

  .matchTableHeadValue{
    padding: 0px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 0.5rem;
    border: solid 1px green;
    background-color: green;
  }

  .matchTableRow{
    padding: 0px;
    font-size: 0.75rem;
    text-align:center;
    border-bottom: unset; 
  }

  .matchTableRowValue{
    padding: 0px;
    font-size: 0.75rem;
    text-align:center;
    border-bottom: unset;
    font-weight: bold; 
  }

  .matchTableSide{
    padding: 0px;
    background-color: green;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 0.5rem;
    height: 100%;
    border: solid 1px green;
    writing-mode: tb-rl;
    transform: rotate(-180deg);
  }

.flex-row {
  height: 2.5rem;
}

.content-section{
  background-color: #cbdef3;
  font-size: 0.8rem;
}

