@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');


.progress-row {
    display: flex;
    align-items: left;
    gap: 0.7em;
    margin-bottom: 0.6em;
  }
  .progress-label {
    min-width: 40px;
    font-weight: 500;
  }
  .progress-bar-outer {
    width: 50%;
    background: white;
    border-radius: 0px;
    position: relative;
    height: 25px;
    overflow: hidden;
    flex: 1;
  }
  .progress-bar-inner {
    height: 80%;
    border-radius: 0px;
    height: 25px;
    transition: width 0.6s ease-out;
  }
  .progress-bar-text {
    position: absolute;
    top: 6px;
    width: 100%;
    text-align: center;
    line-height: 12px;
    font-weight: 700;
    color: #000000;
    pointer-events: none;
  }
  .navbar-brand img {
    height: 90px !important;
    width: auto;
  }
h1, h2, h3 {
  color: #03865a;
}

h4 {
  color: #03865a;
  font-weight: bold;
}

h5 {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  font:Arial;
}

.highlight {
  background-color: #03865a;
  padding: 0.1em 0.2em; /* Optional: adds a little space around the text */
  border-radius: 0.2em;  /* Optional: rounded corners */
  color: #fff;           /* Optional: for contrast */
  display: inline;
}
mark {
  color: #000000;
  font-size: 26px;
  background-color: #e9f7ef ;
  font-weight: bold;
  font-family: 'Cal Sans', sans-serif;
  font-weight: 300;
}
.gray-box {
  background-color: #e9f7ef ;   /* Light gray */
  border-radius: 5px;         /* Rounded corners */
  padding: 10px;               /* Space inside the box */
  display: block;
  width: 100%;       /* Shrink to fit content, or use block for full width */
  margin: 10px 0;               /* Optional: space above/below */
  margin-top: 0px;    /* Increase this value for more space above the box */
  margin-bottom: 15px; /* Optional: space below */
}

h5{
    font-size: 16px;
    line-height: 1.6;
    color: #red;
    max-width: 65ch;
    margin: 20px 0;
}

}

@media print {
  @page {
    size: A4 landscape;
    margin: 1cm; /* Adjust margins as needed */
  }
  
  html, body {
    margin: 0;
    padding: 0;
    background: #FFF;
    font-size: 12pt;
  }
  
  /* Ensure OJS plots maintain aspect ratio in landscape */
  .observablehq, .plot-container {
    page-break-inside: avoid;
    width: 100% !important;
  }
  
  /* Optimize for landscape layout */
  svg {
    max-width: 100% !important;
    height: auto !important;
  }
}
input[type="range"] {
  accent-color: #4a90e2;     /* Change thumb/track color in supported browsers */
  width: 100%;
  height: 8px;
}
input[type="range"]::-webkit-slider-thumb {
  background: #ff5e3a;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

.info-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.info-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #eee;
  color: #03865a;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-family: inherit;
  font-size: 15px;
  line-height: 18px;
  border: 1px solid #aaa;
  box-sizing: border-box;
  margin-left: 4px;
}

.info-popup {
  display: none;
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  color: #222;
  border: 1px solid #03865a;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  z-index: 10;
  font-size: 14px;
  pointer-events: none;
  white-space: pre-line;
}

.info-tooltip:hover .info-popup,
.info-tooltip:focus-within .info-popup {
  display: block;
}



