.jumbotron {
  background: #FFFFFF;
  color: #282828;
  padding-bottom: 80px;
}
.jumbotron .btn-primary {
  background: #845ac7;
  border-color: #845ac7;
}
.jumbotron .btn-primary:hover {
  background: #7646c1;
}
.jumbotron p {
  color: #282828;
  max-width: 75%;
  margin: 1em auto 2em;
}
.jumbotron h1 {
  font-size: 40px;
}
.navbar + .jumbotron {
  margin-top: -20px;
}
.jumbotron .lang-logo {
  display: block;
  background: #777BB3;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin: auto;
  border: 2px solid white;
}
.jumbotron .lang-logo img {
  max-width: 100%;
}
.ptmonob {
    font-family: 'PT Mono', monospace;
    color: #282828;
    padding-bottom: 1px; 
    text-transform: lowercase;
}
.ptmonow {
    font-family: 'PT Mono', monospace;
    color: #282828;
    padding-bottom: 1px; 
    text-transform: lowercase;
}
.avenirb {
    font-family: 'Avenir', sans-serif;
    color: #282828;
    padding-bottom: 1px; 
    text-transform: uppercase;
}
.avenirw {
    font-family: 'Avenir', sans-serif;
    color: #FFFFFF;
    padding-bottom: 1px; 
    text-transform: uppercase;
}
body, p, a, ul, li {
    font-family: 'PT Mono', monospace;
    color: #282828;
    padding-bottom: 1px; 
}

.body_container {
    position: relative;
    z-index: 999; 
    padding: 150px 10% 75px 10%; /* 50px top, 0 right and left, 10% */
}
.body_table {
    position: relative;
    z-index: 999; 
    padding: 150px 2.5% 75px 2.5%; /* 50px top, 0 right and left, 10% */
    overflow-x: auto; /* Allow horizontal overflow */
    white-space: nowrap; /* Prevent line breaks */
}
.body_container_small {
    padding: 150px 30% 75px 30%; /* 50px top, 0 right and left, 10% */
}
.card {
    background-color: #fff; /* White background */
    color: #282828; /* Black text */
    border: 1px solid #282828; /* Black border */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center align text */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color change */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}
.card:hover {
    background-color: #f0f0f0; /* Light gray background on hover */
}
.card-icon {
    font-size: 48px; /* Adjust icon size */
}
.card-title-large {
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-size: 1.5em; /* Adjust the font size as needed */
}
.navigate-button {
    float: right; /* Align the button to the right */
    background-color: #282828;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none; /* Remove underline from link */
}
.navigate-button-left {
    float: left; /* Align the button to the right */
    background-color: #282828;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none; /* Remove underline from link */
}

/* header {
  position: fixed;
  background-color: #282828;
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  width: 100%;
} */

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

nav {
  position: fixed;
  top: 50;
  left: 0;
  height: 100%;
  font-size: 1.2em;
  background-color: #282828;
  padding: 30px;
  padding-top: 100px; /* Adjust this value to align the menu items */
  box-sizing: border-box;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  z-index: 9998;
}
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  padding: 15px;
  margin-bottom: 10px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-family: 'PT Mono', monospace;
}

.menu-toggle {
  cursor: pointer;
  color: #fff;
  background-color: #282828;
  margin-left: 0;
  padding: 10px 20px;
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.slide-out {
  transform: translateX(-100%);
}

.slide-in {
  transform: translateX(0);
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.hamburger-menu span {
  display: block;
  height: 3px;
  background: white;
} 

.user-menu {
  position: fixed;
  top: 50;
  right: -500px;
  width: 500px;
  height: 100%;
  background-color: #282828;
  transition: right 0.3s ease;
  z-index: 9998;
  padding: 30px;
  padding-top: 100px;
}
.user-menu.slide-out-right {
  right: 0;
}

.percentage-box {
    width: 125px; 
    height: 20px; 
    border: 1px solid #000; 
    position: relative;
}

.filled {
    height: 100%;
    background-color: #9BD3DD; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9990;
}

.percentage-text {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000; 
    z-index: 9999;
}

.filled_match {
    height: 100%;
    background-color: #9BD3DD; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9990;
}

.percentage-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage-text_match {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000; 
    z-index: 9999;
}
#searchTable td:last-child {
    text-align: right;
}

/* Style for tick marks */
#externalSlider::-webkit-slider-runnable-track {
  color: #282828;
  border: none;
  height: 3px;
  width: calc((100% / 5) * var(--slider-value));
}

#externalSlider::-moz-range-track {
  color: #282828;
  border: none;
  height: 3px;
  width: calc((100% / 5) * var(--slider-value));
}

#externalSlider::-ms-track {
  color: #282828;
  border: none;
  height: 3px;
  width: calc((100% / 5) * var(--slider-value));
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #282828;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 9999;
}
.footer a, p {
    color: #fff;
    text-decoration: none;
}

.body_search_container {
    display: flex;
    align-items: flex-start;
    padding: 150px 5% 40px 5%;
    width: 100%;
}

.filter-section {
    position: fixed;
    top: 125px;
    left: 5%;
    bottom: 100px; /* Stick to the bottom of the viewport */
    width: 250px;
    background-color: #ffffff;
    padding: 20px;
    overflow-y: auto; /* Enable vertical scrolling */
}    

.mySearchTable {
    position: fixed;
    top: 50;
    left: calc(5% + 275px);
    width: calc(90% - 275px);
    height: calc(100vh - 210px);
    overflow-y: auto;
}

.filter-section input {
    width: calc(100% - 16px);
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.filter-section button {
    width: 100%; 
    padding: 10px;
    background-color: #282828;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.tableText p{
  color: #282828;
}
.tab {
    overflow: hidden;
    background-color: #fffff;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: #ffffff;
    color: #282828;
    display: inline-block;
    border: 1px solid #282828;
    outline: none;
    float: left;
    cursor: pointer;
    padding: 10px 20px; /* Adjusted padding */
    margin: 0; /* Reset margin */
    width: 100px;
    transition: 0.3s;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #282828;
    color: #ffffff;
    border: 1px solid #282828;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    overflow-y: auto; 
    max-height: calc(100% - 75px); 
    background-color: #fffff;    
}
.apply-button {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Adjust button width as needed */
    padding: 10px;
    background-color: #282828;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #d3d3d3;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #282828;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #282828;
  cursor: pointer;
}

.inputContainer {
  display: none;
}

.inputContainer.show {
  display: block;
}

/* Style for the info graphic container */
.info-graphic {
    position: relative;
    display: inline-block;
}

/* Style for the info icon */
.icon img {
    width: 50px; /* Adjust the size of the icon as needed */
    height: auto;
}

/* Style for the description */
.description {
    position: absolute;
    top: 50%; /* Position the description centered vertically */
    left: calc(100% + 10px); /* Position the description to the right of the icon */
    transform: translateY(-50%); /* Center the description vertically */
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a shadow effect */
    opacity: 0; /* Initially hide the description */
    transition: opacity 0.3s ease; /* Add a smooth transition */
    width: 50px; /* Adjust the width as needed */
    height: auto; /* Allow height to adjust based on content */
    text-align: left; /* Align text to the left */
    z-index: 99999;
}

/* Show the description when hovering over the info graphic */
.info-graphic:hover .description {
    top: 100%; /* Move the description below the icon */
    opacity: 1; /* Show the description */
}

.range-container {
    position: relative;
    width: 190px; /* Adjust width as needed */
    margin-bottom: 20px; /* Add some spacing between range inputs */
}

.range-container-wide {
    position: relative;
    width: 100%; /* Adjust width as needed */
    margin-bottom: 20px; /* Add some spacing between range inputs */
}

.range-labels {
    position: absolute;
    bottom: -25px; /* Position the labels below the range input */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-family: 'PT Mono', monospace;
    color: #282828;
}

.range-labels > *:first-child {
  margin-left: -5%; /* Remove default margin */
}

.range-labels > *:last-child {
  margin-right: -5%; /* Remove default margin */
}

.range-labels span {
    position: relative;
    flex: 1;
    text-align: center;
}
/* Create a custom checkbox */
input[type="checkbox"] + label:before {
    content: '';
    display: inline-block;
    width: 20px; /* Adjust the size of the custom checkbox */
    height: 20px; /* Adjust the size of the custom checkbox */
    border: 2px solid #282828; /* Border color */
    background-color: #fff; /* Unchecked background color */
    vertical-align: middle; /* Align the custom checkbox vertically */
    cursor: pointer;
}


input[type="checkbox"]:checked {
    accent-color: #282828; 
}

.toast {
    opacity: 0;
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 17px;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}
.toast.show {
    opacity: 1;
    visibility: visible;
}
.toast.hide {
    opacity: 0;
    visibility: hidden;
}

.nowrap {
    white-space: nowrap;
}