/* public/stylesheets/style.css */
html, body {
  overflow-x: hidden;
  box-sizing: content-box!important;
}

/**, *:before, *:after {*/
/*  box-sizing: inherit;*/
/*}*/

.advanced-box {
  box-sizing: border-box!important;
}

body {
  /*padding: 50px;*/
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

.intro-text {
  font-size: 17px;
  color: #266696;
  text-align: justify;
  /*font-style: italic;*/
  /*font-weight: 500;*/
}

.help-icon i {
  color: #266696; /* Regular color for the icon */
  transition: color 0.3s ease; /* Smooth transition effect */
}

.help-icon i:hover {
  color: #00B7FF; /* Hover color */
}

a {
  color: #00B7FF;
}
a:hover{
  color: #266696;
}

a.url {
  color: #266696;
}

a.url:hover {
  color: #00B7FF;
}

.box{
  height: 300px;
  width: 100%;
}

.search-box{
  height: 100px;
  /*width: 100%;*/
}

.bg-color{
  background-color: #266696;
}

.txt-color{
  color: #266696;
}

button.txt-color:hover{
  color: #00B7FF;
}

a.txt-color:hover{
  color: #00B7FF;
}

.txt-color-white{
  color: white;
}

a.txt-color-white:hover{
  color: #89cff0;
}

optgroup {
  font-style: italic; /* Italicize optgroup label */
  font-weight: normal; /* Ensure it's not bold */
}

option {
  font-style: normal; /* Keep options normal */
}

a.txt-size{
  font-size: 18px;
}

.logo {
  width: 200px;
  height: auto;
  cursor: pointer;
  /*border: 1px solid #ccc;*/
}

.logo-2 {
  width: 250px;
  height: auto;
  cursor: pointer;
  /*border: 1px solid #ccc;*/
}

.logo-margin-left {
  margin-left: 60px !important;
}

.logo-margin-right {
  margin-right: 80px !important;
}

.custom-btn-color {
  background-color: #266696;
  border-color: white; /* You may adjust this if you want a different border color */
  color: #fff; /* Adjust the text color as needed */
}

.custom-btn-style{
  /*margin-right: 2rem;*/
  width: 51%;
}

.custom-btn-color:hover {
  /*border: 3px solid white;*/
  color: black;
  background-color: #89cff0;
}

.border-radius{
  border-radius: 0;
}

.details-border-radius{
  border-radius: 10px;
}

.col-border{
  border: 2px solid #266696;
}

.no-overflow {
  display: block;
  overflow: hidden;
  white-space: pre-wrap; /* Preserve whitespace and allow line breaks */
  word-break: break-all; /* Break at any character if it overflows */
}

.active-custom {
  background-color: #89cff0;
}

footer.footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

.selected {
  background-color: #89cff0; /* Background color for selected row */
}

.btn-selected {
  background-color: #89cff0; /* Background color for selected button */
  color: black; /* text color for selected button */
  /*font-weight: bold;*/
}

/*body.loading {*/
.loading {
  /* Make the entire page semi-transparent */
  opacity: 0.7;
  /* Disable pointer events so users cannot interact with elements */
  pointer-events: none;
  /*cursor: progress;*/
  /*cursor: wait;*/
}

/* Optional: Add a loading spinner or message */
.loading::after {
  content: "I'm quickly preparing data for you. Thank you for your patience!"; /* Display a loading message */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  background-color: #89cff0;
  padding: 10px 20px;
  border-radius: 5px;
  /* Add any additional styling for the loading message */
}

.ul-style {
  padding-left: 1rem;
  margin: 0;
}

.container-border{
  border: 1px solid #266696;
  border-radius: 10px;
}

.text-size {
  font-size: 15px;
}

.text-color {
  color: #266696;
}

.text-align {
  text-align: justify;
  /*font-style: italic;*/
  /*font-weight: 500;*/
}

.text-blink {
  animation: blinkColor 0.4s infinite alternate;
}

@keyframes blinkColor {
  0% {
    color: #89cff0;
  }
  100% {
    color: #266696;
  }
}

.links-style a:hover {
  color: #266696;
}

.links a {
  margin-right: 10px;     /* Space between links */
}

.links a:hover {
  color: #266696;
}

.heading-margin {
  margin-top: 15px;
}

.footer-logos {
  height: 50px;
  max-width: 150px;
}

.footer-logos-2 {
  height: 120px;
  max-width: 250px;
}

#fieldSelector {
  font-weight: bold;
  width: auto; /* Adjust width automatically based on the content */
  min-width: 200px; /* Ensure a minimum width */
}

/*#fieldSelector option {*/
/*  font-weight: bold;*/
/*  !*white-space: normal; !* Ensure text wraps if it's too long *!*!*/
/*}*/

.hover-img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hover-img:hover {
  transform: scale(1.05); /* slightly enlarge */
  filter: brightness(1.2) saturate(1.1); /* brighten and saturate */
  cursor: pointer;
}

