
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #333333;
  
}

a {
  text-decoration: none;
  color: inherit;
}


.custom-navbar {
  height: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  background-color: #fff; 
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #333333;
  font-weight: bold;
}

.navbar-brand img {
  margin-right: 10px;
  width: 70px;
  height: 80px;
}

.navbar-nav .nav-item .nav-link {
  margin-right: 20px;
  font-size: 1.2rem;
  color: #333333;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #007bff; 
  border-radius: 10px;
}

.btn-primary {
  background-color: rgba(74, 105, 189, 0.8); 
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem; 
  transition: all 0.3s ease-in-out; 
}

.btn-primary:hover {
  background-color: #74aae4; 
  transform: scale(1.05); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




.custom-box {
  width: 100%; 
  height: 150px; 
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.custom-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}


@media (max-width: 768px) {
  .navbar-brand {
      font-size: 1.5rem; 
  }
  .btn-primary {
      font-size: 1rem; 
      padding: 8px 16px;
  }
}


.accent-color {
  color: #ff6347; }


.navbar-nav .nav-item .nav-link,
.btn-primary {
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover,
.btn-primary:hover {
  background-color: #74aae4; 
  color: #ffffff;}




.content-container {
  padding: 20px;
  margin-top: 60px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #68a7ea;
}

.content-image {
  height: auto;
  max-width: 100%;
  border-radius: 5px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; 
}

.content-heading {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
  margin-bottom: 20px;
}

.content-text {
  font-size: 1rem;
  color: #343a40;
  text-align: center;
}


body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}


.table-container {
  margin-bottom: 20px;
  overflow-x: auto; 
}

.table-custom {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff; 
  transition: box-shadow 0.3s ease-in-out;
}

.table-custom th {
  background-color: #68a7ea;  
  padding: 12px;
  text-align: center;
  font-weight: normal;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}

.table-custom td {
  padding: 8px;
  text-align: center;
  font-weight: normal;
  transition: background-color 0.3s ease-in-out;
}

.table-custom tbody tr:hover  {
  background-color: #74aae4;
}

.table-custom th .sort-order {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  opacity: 0.5;
}

.table-custom th .sort-order.up::after {
  content: "\25b2"; 
}

.table-custom th .sort-order.down::after {
  content: "\25bc"; 
}

p {
  font-size: 16px;
}

sup {
  font-size: 0.7em;
  vertical-align: super;
}

sup a {
  text-decoration: none;
  color: rgb(255, 255, 255); 
}

.link-container {
  margin: 20px 0;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th.me {
  color: #ffffff; 
  font-weight: bold;
  background: rgb(228, 225, 225); 
}

/* Image container styles */
.image-container {
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  height: auto;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 90%; /* Set the width of the image */
  height: auto; /* Maintain the aspect ratio */
  display: block; /* Ensure there's no extra space around the image */
}

/* Text container styles */
.text-container {
  padding: 20px;
}


.page-container {
  background-color: #e5eaf1;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px auto; 
  max-width: 1800px; 
}

p {
  font-size: 16px;
}

sup {
  font-size: 0.7em;
  vertical-align: super;
}

sup a {
  text-decoration: none;
  color: rgb(255, 0, 0); }

.link-container {
  margin: 20px 0;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#references {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}

.references-title {
  color: #2c3e50;
  margin-bottom: 20px;
}

#references ol {
  padding-left: 20px;
}

#references li {
  margin-bottom: 15px; 
}

#references li a {
  color: #68a7ea;
  text-decoration: none;
}

#references li a:hover {
  text-decoration: underline;
}

#references li .title {
  font-weight: bold;
}

body {
  background-color: #f7f7f7;
  padding-top: 20px;
}

#appendix {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.appendix-title {
  margin-bottom: 20px;
}

.note-heading {
  color: #dc3545; /* Red color for note heading */
  font-weight: bold;
}

.info-container {
  background-color: #dbe4ed;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Additional spacing for info containers and note */
@media (min-width: 768px) {
  .info-container {
      margin-bottom: 0; }
}

h5 {
  margin-bottom: 8px;
  color: #000000;
}

p {
  margin-bottom: 4px;
}

.container-custom {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
  
}
 h2 {
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
}

#modelChart {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
}


.dropdown-checkbox-menu {
  position: relative;
}

.dropdown-checkbox-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 1.5rem;
  cursor: pointer;
}

.dropdown-checkbox-menu .dropdown-item input[type="checkbox"] {
  margin-right: 10px;
}

.text-center {
    text-align: center;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}


.highlighted-box {
  background-color: #dfe0ef; 
  padding: 30px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: box-shadow 0.3s ease; 
  margin-top: 12px; 
}

.highlighted-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); }

.btn-primary {
  background-color: transparent; 
  border: 2px solid #007bff; 
  color: #007bff;
  border-radius: 15px; 
  display: block;
  width: 150px; 
  margin: 0 auto; 
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
  background-color: #007bff; 
  color: #fff;
}

.btn-custom {
  margin-top: 20px; }


.text-container {
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.moving-text {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: center;
  position: absolute;
  animation: moveText 35s linear infinite;
  animation-delay: 1s; 
}
.moving-text a {
  color: #007bff;
  text-decoration: none;
  margin-left: 5px;
}
.moving-text a:hover {
  text-decoration: underline;
}
@keyframes moveText {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}