/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #eeeeee;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Add your custom styles here */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  padding: 10px;
}

.logo img {
  height: 40px;
  margin-left: 40px;
}

.logo {
  max-width: 200px;    /* Adjust as needed */
  height: auto;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin-right: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
}

.menu a:hover {
  background-color: #c2bdbd;
  color: #000000;
}

.menu ul li a {
  padding: 8px 16px;  /* default padding */
  border: 4px solid transparent;
  transition: padding 0.3s ease, border-color 0.3s ease;
}

.menu ul li a:hover {
  padding: 12px 20px;  /* increased padding on hover */
  border-color: rgba(0, 0, 0, 0.1);  /* border color change on hover */
}





.sub-menu {
  display: none;
  position: absolute;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu li:hover .sub-menu {
  display: block;
}

.sub-menu li {
  margin: 5px 0;
}

.sub-menu a {
  display: block;
  padding: 5px;
  color: #333;
  text-decoration: none;
}

.sub-menu a:hover {
  background-color: #007bff;
  color: #fff;
}





.language-icon img {
  max-height: 25px;
}

.sign-in-button a {
  display: inline-block;
  color: #ffffff;
  background-color: #091aff;
  text-decoration: none;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
  margin: 10px;
  margin-right: 50px;
  font-weight: bold;
  font-size: 18px; /* Increase font size */
}

.sign-in-button a:hover {
  background-color: #e9e8e8;
  color: #131313;
}

.sign-in-button a:active {
  background-color: #00008b;
  color: #ffffff;
}

.sign-in-button a {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.sign-in-button a:active {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}


.sign-up-prompt {
  font-size: 0.8em; /* Adjust the value as per your needs */
}

.sign-up-prompt a {
  font-size: 1.2em; /* Adjust the value as per your needs */
}


/* Main styles 
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 150px);
  background: linear-gradient(120deg, #333333, #076afd);
}
*/
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 150px);
  background: #eeeeee;
}


.sign-in-container {
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 20px;

}
.sign-in-container {
  width: 50%; /* Adjust this value according to your needs */
  font-size: 20px; /* Adjust size as needed */
  font-weight: bold; /* Makes the font bold */
}

/* Center the reCAPTCHA widget within the sign-in container */
.sign-in-container .g-recaptcha {
  max-width: 100%;
  margin: auto; /* Center horizontally within the container */
  overflow: hidden; /* Hide overflowing content */

}

.sign-up-container {
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 20px;
  height: 80%; /* This will make the container take up the full height of the viewport */

}

.sign-up-container {
  width: 80%; /* Adjust this value according to your needs */
  font-size: 20px; /* Adjust size as needed */
  font-weight: bold; /* Makes the font bold */
}


.form-buttons {
  display: flex;
  justify-content: space-between;  /* Adjust this if you want to change the spacing between the buttons */
}

.sign-in-container .btn {
  font-size: 18px; /* Adjust the font size as needed */
  padding: 8px 16px; /* Adjust the padding as needed */
  background-color: #0056b3;
  color: white;
  display: inline-block;
  margin:0;
  gap:0;
}

/* For the Sign Up page only */

.sign-up-container {
  /* other properties */
  font-size: 14px; /* Adjust as per your needs */
}

.sign-up-container .form-group {
  /* other properties */
  font-size: 14px; /* Adjust size as needed */
}

.sign-up-container .form-group label {
  /* other properties */
  font-size: 18px; /* Adjust size as needed */
}

.sign-up-container .submit-button {
  /* other properties */
  font-size: 14px;
}

.sign-up-container .cancel-button {
  /* other properties */
  font-size: 14px;
}

.sign-up-container .account-info {
  font-size: 16px;
}

.sign-up-container .account-info a {
  font-size: 18px;
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  font-weight: normal;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group {
  width: 80%;
  max-width: 300px;
  margin-bottom: 18px;
  font-size: 16px; /* Adjust size as needed */
  font-weight: bold; /* Makes the font bold */
}

.form-group label {
  display: block;
  margin-bottom: 1px;
  font-size: 20px; /* Adjust size as needed */
  font-weight: bold; /* Makes the font bold */
}

.form-group input {
  width: 80%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

form input[type="submit"] {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #0056b3;
}


.custom-file-upload {
  cursor: pointer;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  display: inline-block;
}

.inputfile {
  display: none;
}

.submit-button {
  margin-top: 20px;
  padding: 10px 20px; /* Adjust the padding to make the button smaller */
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #0056b3;
}



.cancel-button {
  margin-top: 20px;
  padding: 10px 20px; /* Adjust the padding to make the button smaller */
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cancel-button:hover {
  background-color: #0056b3;
}

/* Footer styles */
footer {
  padding: 10px;
  background-color: #eeeeee;
  color: #000000;
  text-align: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo-linkedin {
  width: auto; 
  height: 40px;
}





/* Responsive styles */
@media screen and (max-width: 1320px) {
  header {
      flex-direction: column;
  }
  .menu {
      margin-top: 20px;
  }


  .sign-in-container .btn {
    font-size: 15px; /* Adjust the font size as needed */
    padding: 8px 16px; /* Adjust the padding as needed */
  }

  .menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 22px;
  }

  .sign-in-button a {
    display: inline-block;
    color: #ffffff;
    background-color: #091aff;
    text-decoration: none;
    padding: 20px 20px;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 10px;
    margin-top: 40px;
    /* margin-right: 50px; */
    font-weight: bold;
    font-size: 14px; /* Increase font size */
  }

  .sign-in-container .g-recaptcha {
    max-width: 100%; /* Allow it to take the full width on smaller screens */
  }


  .sign-in-container {
    width: 50%; /* Adjust this value according to your needs */
    font-size: 13px; /* Adjust size as needed */
    font-weight: bold; /* Makes the font bold */
    align-content: center;
    justify-content: center;
  }


  .form-group label {
    display: block;
    margin-bottom: 1px;
    font-size: 16px; /* Adjust size as needed */
    font-weight: bold; /* Makes the font bold */
  }
  
  .form-group input {
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }

  main {
    /* Remove all styles for smaller screens */
    display: initial;
    justify-content: initial;
    align-items: initial;
    min-height: initial;
    background: initial;
  }

  .logo {
    max-width: 200px;    /* Adjust as needed */
    height: auto;
    display: flex;
    align-items: center; /* Vertically aligns the child items to the center */
    justify-content: center; /* Horizontally aligns the child items to the center */

    margin: 0;
  }


}

.dropdown-menu {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.dropbtn:hover {
  background-color: #0056b3;
}

.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;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-menu:hover .dropdown-content {
  display: block;
}


/* existing CSS content... */

.btn {
  font-size: 1.3em;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  color: #ffffff;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  margin: 30px 0px;
  border: none;
}

.btn-primary {
  background-color: #007bff;
  margin-right: 30px;

}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-cancel {
  background-color: #ff0000;
}

.btn-cancel:hover {
  background-color: #b30000;
}




.container-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}





/* Style the label as a button */
.container-upload .file-upload {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 2px;
  padding: 15px 30px;
  border: none;
  background-color: #007BFF; /* Blue color for the button */
  color: white; /* White text color */
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.container-upload #upload-form {
  display: flex;
  justify-content: space-between;
  gap: 10px; /* Add some space between the elements */
}

/*
.container-upload .file-upload, .container-upload .submit-button, .cancel-button {
  display: inline-block;
}
*/

.button-container {
  display: flex;
  flex-direction: row; 
  gap: 10px; /* Adjust to your preference */
}


.container-upload .file-upload:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.container-upload .file-upload input[type="file"]:focus + label,
.container-upload .file-upload input[type="file"]:valid + label {
  background-color: #0056b3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.container-upload .submit-button, .cancel-button {
  /* display: inline-block; */
  padding: 15px 30px;
  margin: 20px;
  cursor: pointer;
  border: none;
  background-color: #1A2238; /* Blue color for the button */
  color: white; /* White text color */
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;

}

.container-upload .submit-button:hover {
  background-color: #1c6cc4; /* Darker blue on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.container-upload .cancel-button:hover {
  background-color: #1c6cc4; /* Darker blue on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.container-upload .results {
  background-color: #000000; /* Dark gray background */
  padding: 30px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.container-upload .prediction-label {
  font-size: 18px;
  color: white; /* White color for the prediction label */
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-upload .prediction-result {
  font-size: 24px;
  color: #ff3c00; /* Red color for the prediction result */
  font-weight: bold;
  margin-top: 10px; /* Add margin-top for spacing */
  display: flex;
  justify-content: center;
  align-items: center;
}


.container-upload .result-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.container-upload #result {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

.container-upload h1, .container-upload h2 {
  color: #333;
}

.main_body {
  display: inline-block;
  justify-content: center;
  gap: 20px; /* Add some space between the elements */
}



@keyframes rotateCarousel {
  0% {
      transform: translateX(0);
  }
  25% {
      transform: translateX(-100%);
  }
  50% {
      transform: translateX(-200%);
  }
  75% {
      transform: translateX(-300%);
  }
  100% {
      transform: translateX(0);
  }
}







