
  .calculator-container {
    background-color: #231F20;
    border-radius: 10px;
    padding: 24px;
    max-width: 1215px;
    width: 100%;
    box-sizing: border-box;
  }

  .tab {
    /* flex: 1; */
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    /* background-color: #3a3a3a; */
    /* border: 1px solid #444; */
    border-bottom: none;
    color: #fff;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
    margin-left: 8px;
  }

  .tab.active {
    /* background-color: #0078d4; */
    opacity: 1;
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  h1 {
    text-align: center;
    margin: 48px;
  }

  .section {
    margin-top: 56px;
  }

  .row-flex .section {
    width: 225px;
  }

  .buttons-container,
  .inputs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* height: 43px; */
    margin-top: 24px;
  }

  .button {
    padding: 10px 20px;
    background-color: #444;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    border: solid 1px #fff;
    font-size: 16px;

  }

  select{
    padding: 10px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    color: #444;
    cursor: pointer;
    border: solid 1px #fff;
    font-size: 16px;
    max-width: 196px;
    width: 100%;
  }

  .button.active {
    background-color: #EE1D23;
    border-color: #EE1D23;
  }

  select {
    flex: 1;
  }

  .output-container {
    background-color: #312C2C;
    border-radius: 10px;
    padding: 32px 24px 20px;
    margin: 48px 80px 0px 0px;
    max-width: 392px;
    width: 100%;
  }

  .output-container p {
    margin: 24px 0;
  }

  .info {
    font-size: 0.9em;
    margin-top: 10px;
    line-height: 1.5;
    width: 50%;
  }

  .table-container {
    overflow-x: auto;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }

  th,
  td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
  }

  th {
    background-color: #0078d4;
  }

  td {
    background-color: #3a3a3a;
  }

  .tabs{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 10px 0px;
    border-bottom: 1px solid #B3B3B3CC;
  }

  .car-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .car-inputs-container{
    max-width: 750px;
    width: 100%;
  }

  .row-flex{
    display: flex;
    flex-direction: row;
    /* gap: 46px; */
  }

  .output-container h2 {
    font-size: 20px;
    font-weight: normal;
    color: #ffffff;
}

h2{
  font-size: 16px;
  font-weight: normal;
}

.total-cost {
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
}

.car-total-cost {
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
}

.motorcycle-total-cost{
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
}

/* Cost Breakdown Section */
.cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.cost-row span {
  color: #bdbdbd; /* Light gray for labels and values */
}


.total-cost .currency-icon {
  font-size: 24px;
  vertical-align: middle;
  font-weight: normal;
}


/* Container Styling */
.excise-container {
  color: #ffffff;
  width: 100%;
  border-top: solid 1px #B3B3B3CC;
  border-bottom: solid 1px #B3B3B3CC;
  padding: 48px 0px;
  margin: 48px 0px;
}

.description {
  font-size: 20px;
  margin-bottom: 20px;
  margin-left: 8px
}

/* Tax Table Styling */
.tax-table {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 26px 0px 0px 0px;
}

.tax-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 75px; /* Fixed width for alignment */
}

.tax-item span {
  font-size: 14px;
  color: #F9F9FBCC;
}

.tax-item strong {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.info p{
  font-size: 16px;
  color: #bdbdbd;
}


.motorcycle-selector{
  display: flex;
  flex-direction: column;
}

.motorcycle-inputs-container{
  max-width: 611px;
}

.motorcycle-inputs-container .info{
  width: 100%;
}

.motorcycle-inputs-container .section,
 .car-selectors .section{
  margin-top: 56px;
  display: flex;
  gap: 60px;
  margin-bottom: 56px
}

.selectors-container{
  /* width: 100%; */
  max-width: 165px;
}

.selectors-container h2{
  margin: 0px 0px 24px  0px;
}

.panel-header{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.total-bar{
  display: none;
}

.close-panel{
  display: none;
}

@media screen and (max-width: 1275px) {

  .calculator-container{
    background-color: transparent;
  }

  .tabs{
    justify-content: center;
  }

  .car-container{
    display: flex;
    flex-direction: column;
  }

  .row-flex{
    flex-direction: column;
  }

  .section{
    margin-top: 30px;
  }

  .motorcycle-inputs-container .section,
  .car-selectors .section {
    flex-direction: column;
    margin-top: 30px;
  }

  .close-panel{
    display: block;
  }

  .info{
    width: 100%;
  }


  .tax-table {
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto;  /* Enable horizontal scroll */
    padding-bottom: 10px; /* Optional, for some spacing at the bottom */
  }

  .tax-item {
    flex-shrink: 0;  /* Prevent shrinking of items */
  }

  .total-bar {
    height: 120px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #231F20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    z-index: 1000;
    box-sizing: border-box;
  }
  
  .total-info{
    height: 70px;
  }
  
  .total-info span{
    font-size: 20px;
  }
  
  .output-container {
    box-sizing: border-box;
    max-width: 100%;
    position: fixed;
    bottom: -100%; /* Hidden initially */
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: bottom 0.3s ease-in-out;
    padding: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #231F20;
  }
  
  .output-container.active {
    bottom: 0; /* Slide up when active */
  }
  
  .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .panel-content {
    margin-top: 20px;
    line-height: 1.5;
  }

}

@media screen and (max-width: 1000px) {
  .calculator-container{
    background-color: transparent;
  }


}

@media screen and (max-width: 850px) {

}


@media screen and (max-width: 500px) {

}


