   header {
    background-color: #0056b3; /* Softer blue theme */
    color: white;
    padding: 16px 0; /* Adjusted padding */
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
}

.language-selector {
    display: flex;
    align-items: center;
}

.selected-language {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.selected-language img {
    margin-right: 8px;
}

.header-flag {
    height: 40px; /* Larger size for the header icon */
    width: 40px; /* Ensure the icon is a circle */
    border: 2px solid white; /* 1px black border */
    border-radius: 50%; /* Make the icon circular */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 80px; /* 100px from the top */
}

.language-option {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-option:hover {
    background-color: #f1f1f1;
}

.language-option img {
    height: 28px; /* Size for the dropdown icons */
    width: 28px; /* Ensure the icon is a circle */
    margin-right: 8px;
    border-radius: 50%; /* Make the icon circular */
}

h1 {
    margin: 0;
    font-size: 2em;
    color: white;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}

nav {
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: white;
    color: #0056b3;
}

/* Hide Infocenter button on mobile */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo {
        margin-left: 20px;
    }

    h1 {
        margin-left: 20px;
    }

    .language-selector {
        margin-right: 20px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo,
    h1,
    .language-selector {
        flex: 0 0 auto;
        margin: 10px;
    }

    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    .dropdown-content {
        right: 180px; /* 200px from the right on mobile */
    }
    
}






body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #cae6fc;
    margin: 0;
    padding: 0;
}


/*h1 {*/
/*    text-align: center;*/
/*    margin-top: 20px;*/
/*}*/

.container {
    max-width: 1500px;
    margin: 0 auto;
    
}

.containerB {
    max-width: 1500px;
    margin: 0 auto;
    margin-left: 37%;
}

.background {
    background-color: #f6f6ff;
}

.container2 {
    border-bottom: 1px solid #4d6c87; /* sets a 1px solid white border */
    background-color: #cae6fc;
}

.section {
    margin-top: 40px;
    max-width: 700px;
}

.gridTest {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

@media (max-width: 1600px) {
    body {
        zoom: 80%;
    }
}
@media (max-width: 1300px) {
    body {
        zoom: 70%
    }
}
@media (max-width: 1150px) {
    body {
        zoom: 60%
    }
}
@media (max-width: 1000px) {
    body {
        zoom: 100%
    }
    .gridTest {
        grid-template-columns: 1fr;
    }
    .container {
        max-width: 700px;
    }
    
    .containerB {
        margin-left: 20%;
    }
    
    .dropdown-content {
        right: 15px; 
    }
    
}

@media (max-width: 800px) {
    body {
        zoom: 80%
    }
}

@media (max-width: 680px) {
    body {
        zoom: 70%
    }
}
@media (max-width: 580px) {
    body {
        zoom: 60%
    }
}



.line {
    display: flex;
}

.left-box {
    width: 175px;
    background-color: #F0F8FF;
    padding: 20px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #007ACC;
}

.left-box .title {
    color: #000;
    margin-top: 5px;
}

.explanation {
    color: #777;
    margin-bottom: 0px;
}

.right-box {
    flex-grow: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    border: 1px solid #ddd;
}

.sub-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.input-field {
    margin-bottom: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.input-field label {
    margin-bottom: 5px;
    box-sizing: border-box;
}

.input-field .input-container {
    display: flex;
    align-items: center;
}

.input-field input[type="number"],
.input-field input[type="month"],
.input-field input[type="text"],
.input-field select {
    /* Styles for number and month inputs */
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    margin-right: 5px;
}


.indicator {
    display: flex; /* ADDED LATER*/
    align-items: center; /* ADDED LATER*/
    background-color: #e3eefc;
    padding: 2px 5px;
    border-radius: 4px;
    color: #0056b3;
    border: 1px solid #0056b3;
    font-weight: bold;
}



/* Increase the size of the checkbox */
.checkbox-input {
    width: 20px;
    height: 20px;
}

.checkbox-label {
    font-size: 16px;
}

/* Adjust the checkbox appearance */
.checkbox-input[type="checkbox"],
.checkbox-input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #336699; /* Blue border color */
    border-radius: 4px;
    outline: none;
    transition: background-color 0.3s;
}

/* Add custom styles to the checked state */
.checkbox-input[type="checkbox"]:checked,
.checkbox-input[type="radio"]:checked {
    background-color: #7094b7; /* Blue background color */
    border-color: #4d6c87; /* Blue border color */
}

.line-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-input {
    margin-right: 5px;
}

.centerLine {
    display: flex;
    justify-content: center;
}







   .slider {
        width: 390px;
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }


    
    /* Remove the border from pseudo-elements */
    .range-slider .noUi-handle:before,
    .range-slider .noUi-handle:after {
        background: none;
        border: none;
    }

    .percentage-labels {
        display: flex;
        justify-content: space-between;
        margin-top: 4px;
        font-size: 18px;
        color: #000000; /* Changed color to black */
    }

    .percentage-value {
        font-size: 26px;
        color: #000000; /* Changed color to black */
        font-weight: bold; /* Added font-weight as bold */
        width: 40px;  
        text-align: center;
        
    }
    
    .noUi-connect {
      background-color: blue; /* Change this to the desired background color */
    }
    


.submit-button {
    width: 400px;
    height: 33px;
    background-color: #0056b3;
    border: 2px solid black;
    border-radius: 4px;
    color: #ffffff; /* Text color */
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Horizontally center the button */
    font-weight: bold; /* Make the text bold */
    font-size: 16px; /* Increase the font size */
    margin-bottom: 50px;
    margin-top: 30px;
}

.submit-button:hover {
    background-color: #4284c9; /* Lighter blue background color on hover */
    cursor: pointer;
}



.container6 {
    background-color: #f6f6ff; /* sets a dark background color */
}

.container4 {
    background-color: #f6f6ff; /* sets a dark background color */
    text-align: center;
}

.box {
    font-family: Arial, sans-serif; /* sets the font to Arial */
    font-size: 12px;
    /*border: 1px solid #ccc; */
    padding: 20px; /* adds 20px of padding around the content */
    zoom: 1.5;
    /*-moz-transform: scale(1.5);*/
    /*-moz-transform-origin: 0 0;*/
    color: #000000; /* sets the text color to white */
}

.box2 {
    font-family: Arial, sans-serif; /* sets the font to Arial */
    font-size: 12px;
    padding: 20px; /* adds 20px of padding around the content */
    zoom: 1.5;
    /*-moz-transform: scale(1.5);*/
    /*-moz-transform-origin: 0 0;*/
    color: #000000; /* sets the text color to white */
}
.box3 {
    font-family: Arial, sans-serif; /* sets the font to Arial */
    font-size: 12px;
    border: 1px solid #ccc; /* sets a 1px solid white border */
    padding: 20px; /* adds 20px of padding around the content */
    zoom: 1.5;
    -moz-transform: scale(1.5);
    -moz-transform-origin: 0 0;
    color: #000000; /* sets the text color to white */
}

.chart {
    zoom: 0.66666667;
}

.center {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #000000; /* sets the text color to white */
}

.center2 {
  margin-left: auto;
  margin-right: auto;
}

.left {
    text-align: left;
}


.small {
    font-size: 11.5px;
}

.right {
    text-align: right;
    font-size: 14px;
    color: #fff; /* sets the text color to white */
}

.year {
    font-size: 10px;
}

.calculation {
    font-size: 15px;
    font-weight: bold;
    color: #000000; /* sets the text color to white */
}






/* Table styles */
.container table {
  border-collapse: collapse;
  width: 100%;
}

.container th, .container td {
  padding: 8px;
  border: 1px solid #888;
  text-align: left;
  font-size: 16px;
}

.container th {
  background-color: #ddd; /* Light grey background color for header */
}

.container tr:nth-child(even) {
  background-color: #f2f2f2; /* Light grey background color for even rows */
}

.container tr:hover {
  background-color: #ccc; /* Darker grey background color on hover */
}






.containerB table {
  border-collapse: collapse;
  width: 100%;
}

.containerB th, .containerB td {
  padding: 8px;
  border: 1px solid #888;
  text-align: left;
  font-size: 16px;
}

.containerB th {
  background-color: #ddd; /* Light grey background color for header */
}

.containerB tr:nth-child(even) {
  background-color: #f2f2f2; /* Light grey background color for even rows */
}

.containerB tr:hover {
  background-color: #ccc; /* Darker grey background color on hover */
}







.containerH {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26vh; /* Adjust as needed */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

.podium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 500px; /* Adjust as needed */
}

.hexagon {
  width: 350px;
  height: 200px;
  position: relative;
  transition: transform 0.3s, filter 0.3s;
}

.hexagon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hexagon polygon {
  transition: fill 0.3s;
  stroke: #fff; /* Border color */
  stroke-width: 2px; /* Border width */
}

.hexagon2 {
  width: 500px;
  height: 250px;
  position: relative;
  transition: transform 0.3s, filter 0.3s;
}

.hexagon2:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hexagon2 polygon {
  transition: fill 0.3s;
  stroke: #fff; /* Border color */
  stroke-width: 2px; /* Border width */
}

.hexagon:hover polygon {
  fill: #0056b3;
}

.number {
  font-family: Arial, sans-serif;
  fill: #fff;
  font-size: 30px; /* Adjust size */
  font-weight: bold;
}

.data {
  font-family: Arial, sans-serif;
  fill: #fff;
  font-weight: bold;
  font-size: 14px;
    
}

.label {
  font-family: Arial, sans-serif;
  fill: #fff;
  font-size: 12px;
}

/* Customize colors for each hexagon */
.hexagon:nth-child(1) polygon {
  fill: #4caf50; /* Green */
}

.hexagon2:nth-child(2) polygon {
  fill: #ff9800; /* Orange */
}

.hexagon:nth-child(3) polygon {
  fill: #f44336; /* Red */
}







  :root {
    --green: #4caf50;
    --orange: #ff9800;
    --red: #f44336;
  }


.switch-input {
  display: none; /* Hide the actual radio buttons */
}



.switch-button {
  background-color: #ccc; /* Light grey */
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
   border: 2px solid transparent; 
  cursor: pointer;
  transition: all 0.2s ease; /* Adjust transition duration */
  font-size: 16px; /* Set font size for buttons */
  vertical-align: top; /* Align buttons to the top */
  margin: 0; /* Remove any margin */
  border-radius: 0; /* Reset border-radius */
}

/* Change background color of selected button */
.switch-input:checked + .switch-button {
  background-color: var(--orange); /* Orange for selected button */
  font-weight: bold; /* Make font bold */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Tiny shadow */
}



#point1:checked + .switch-button {
  background-color: var(--green); 
}

#point2:checked + .switch-button {
  background-color: var(--orange);
}

#point3:checked + .switch-button {
  background-color: var(--red);
}

#point1 + .switch-button {
  border-radius: 20px 0 0 20px; 
}

#point3 + .switch-button {
  border-radius: 0 20px 20px 0;
}



#amountG1:checked + .switch-button {
  background-color: var(--green); 
}

#amountG2:checked + .switch-button {
  background-color: var(--orange);
}

#amountG3:checked + .switch-button {
  background-color: var(--red);
}

#amountG1 + .switch-button {
  border-radius: 20px 0 0 20px; 
}

#amountG3 + .switch-button {
  border-radius: 0 20px 20px 0;
}



#tax1:checked + .switch-button {
  background-color: var(--green); 
}

#tax2:checked + .switch-button {
  background-color: var(--orange);
}

#tax3:checked + .switch-button {
  background-color: var(--red);
}

#tax1 + .switch-button {
  border-radius: 20px 0 0 20px; 
}

#tax3 + .switch-button {
  border-radius: 0 20px 20px 0;
}










.loader-container {
      position: relative;
      display: inline-block;
    }

    .loader {
      border: 4px solid #f3f3f3; /* Light grey */
      border-top: 4px solid #3498db; /* Blue */
      border-radius: 50%;
      width: 30px;
      height: 30px;
      animation: spin 2s linear infinite;
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      margin-top: 10px;
      margin-left: -15px;
      background-color: #ffffff; /* White background color */
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }


/* Default styling for the chart containers */
.graph-container {
    height: 500px;
    width: 100%; /* Ensures the container takes up available width */
    max-width: 1150px; /* Maximum width for larger screens */
    margin: 0 auto; /* Center the container horizontally */
}

/* Media query for smaller screens (e.g., mobile devices) */
@media (max-width: 800px) {
    .graph-container {
        width: 100%; /* Adjusted width for smaller screens */
        max-width: 800px; /* Ensure the container doesn't exceed 800px */
    }
}



