body {
    line-height: 1.6;
    font-size: 16px ;
    text-align: justify;}
/* body {
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  margin-top: 50px;
}

.dropdown { position: relative; display: inline-block; }

.dropbtn {
  background-color: #3498db;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content { display: block; }

#sequence {
  margin-top: 20px;
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#classifyBtn {
  margin-top: 20px;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#classifyBtn:active { background-color: #45a049; } */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  padding: 20px;
  width: 100%; /* Ensure the header takes the full width */
  box-sizing: border-box; /* Include padding in the width calculation */
}

/* .logo img {
  max-width: 100px; 
  height: auto;
} */

.header-text {
  text-align: center;
  flex-grow: 1; /* Allow the text to take up remaining space */
}

.header-text h1 {
  margin: 0;
  font-size: 24px; /* Adjust font size as needed */
  color: #3498db;
}

/* 
body {
  font-family: Arial, sans-serif; */
  /* margin: 100px; */
  /* padding: 0;
} */

/* .container {
  display: flex;
} */

.file-upload {
  background-color: #ffffff;
  /* width: 600px; */
  margin: 0 auto;
  padding: 20px;
}

.file-upload-btn {
  width: 100%;
  margin: 0;
  color: #fff;
  /* background: #1FB264; */
  background: #3498db;
  border: none;
  padding: 10px;
  border-radius: 4px;
  /* border-bottom: 4px solid #15824B; */
  border-bottom: 4px solid #095284;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.file-upload-btn:hover {
  background: #1AA059;
  /* background: #3498db; */
  border-bottom: 4px solid #15824B; 
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  margin-top: 20px;
  border: 4px dashed #3498db;
  position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
  background-color: #3498db;
  /* color: #ffffff; */
  /* background-color: #1FB264; */
  border: 4px dashed #ffffff;
}


.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  /* color: #15824B; */
  color:#063453;
  padding: 60px 0;
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all .2s ease;
}

.input-container, .result-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.result-container {
  border-left: 1px solid #ccc; /* Optional: Add a border between input and result containers */
}

h1 {
  margin-top: 0;
}

.dropdown {
  position: relative;
  margin-bottom: 20px;
}

.dropbtn {
  background-color: #3498db;
  color: white;
  padding: 12px 26px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdown-and-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.dropdown {
  margin-right: 10px;
}

.selected-proteome-label {
  font-weight: bold;
}


input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #45a049;
}

button:active {
  background-color: #3e8e41;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
}

.dropdown-and-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.dropdown {
  margin-right: 10px;
}

.selected-proteome-label {
  font-weight: bold;
}

/* #selectedProteome {
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
} */


#classifyBtn {
  margin-top: 20px;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#classifyBtn:active { background-color: #45a049; }

/* Optional: Add custom styles to the table */
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #3498db;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #3498db;
}


.footer1 .widget2 {
  margin-bottom: 80px!important;
}

/* Header changes */
.navbar-collapse:after {
  content: none!important; /* Remove the content */
}
.navbar, .navbar-inverse .navbar-toggle, .navbar-inverse .navbar-toggle:hover{
  background-color: white;
  border-color: #ffff;
}
.icon-bar {
background-color:#0b0101 !important;
}
.navbar-nav>li>a {
  background: none;
  color: #0b0101!important;
}
.navbar-inverse .navbar-nav > .active > a {
  color: #3498db!important;
}

.head_signal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #f2f2f2; */
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #3498db;
  height: 240px;
}

.head_about {
  background: #181015 url(images/tomato-1536x1153.jpg) no-repeat;
}

.head_dataset {
  background: #181015 url(assets/images/mango.jpg) no-repeat;
}

.head_contact {
  background: #f5f3f4 url(images/contact.jpg) no-repeat;
  /* min-height: none; */
  padding-top: 600px;
background-position: center;
background-size: cover;
min-height: 480px;
}

.head_infos {
  background-size: cover;
  min-height: 520px;
  text-align: center;
  padding-top: 240px;
  color: white;
  font-family: "Open sans", Helvetica, Arial;
  font-weight: 300;
}


.anychart-credits{
  display: none;
}

/* #chart{
  height: 600px;
} */

svg{
  height: 600px;
  /* width: 300px; */
}
/* text{
  font-size: 30px;
} */
/* .chart{
  padding-top: 10px;
} */

.visible {
  display: inline-block;
}

.hidden {
  display: none;
}

.navbar-inverse .navbar-nav > li > a:hover {
  /* background-color: #0056b3; */
  color: #4CAF50!important;
}

.navbar-inverse .navbar-nav > .site_logo > a {
  color: red !important;;
}

.info-tooltip {
    left: 50%!important;
    transform: translateX(-50%)!important;
}

.input-group {
    position: relative;
}

.clear-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    cursor: pointer;
    color: #ccc;
}

.clear-icon:hover {
    color: #333;
}
