html {
  height: 100%;
}
body {
  height: 100%;
}

.container {
  min-height: 100%;
	min-width: 95%;
	max-width: 1100px !important;
}

.table td, .table th {
	font-size: 11px !important;
  padding: .25rem !important;
}

.num-cols{
  text-align: right !important;
}

.clickable-shipment {
	cursor: pointer;
}

#sp-facility-table tbody td {
	font-weight: inherit !important;
  font-size: 11px !important;
  padding: .25rem !important;
}

#sp-importer-table tbody td {
	font-weight: inherit !important;
  font-size: 11px !important;
  padding: .25rem !important;
}

.bg-orange {
  background-color: rgb(237, 125, 49);
}

.bg {
  /* The image used */
  background-image: url("https://haltdatabase.com/assets/images/bg3.jpg");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.autocomplete {
  position: relative;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.nav-active {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 1px 12px;
  backdrop-filter: blur(6px); /* glass effect */
}

.text-navyblue {
  color: rgb(33, 55, 82);
}

.text-lightblue {
  color: #6383aa !important;
}

.text-lightgreen {
  color: #63aa93 !important;
}

.bg-navyblue {
  background-color: rgb(33, 55, 82);
}

.bg-darkgreen {
  /*background-color: rgb(6, 64, 43);*/
  background-color: rgb(33, 82, 59);
}

.profile-pic {
  width: 70px;
  height: 70px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #009688;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.audit-form-section {
  padding: .5rem;
  background-color: rgba(255, 255, 255, .4);
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.audit-process {
  font-weight: bold;
}

input[type="radio"] {
  opacity: 1;
}

.notification-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 50%;
  line-height: 1;
}

/* Multistep FoRM */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}

.tab {
  margin: 20px;
  padding-top: 20px;
  padding-bottom: 20px; 
  width: 90%; 
  background: rgba(255,255,255,0.8);
}

.form-section {
  display: none;
}

/* PROGRESS TRACKER */
.progress-bar {
  background: linear-gradient(90deg, #4284B6, #66B6DB);
  transition: width 0.5s ease;
}

.progress {
  border-radius: 12px; 
}

#progress-text {
  color: #555;
  margin-top: 10px;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -10px);
  max-width: 90vw;
  width: max-content;
  padding: 12px 16px;
  border-radius: 6px;
  background: #323232;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Mobile tweak */
@media (max-width: 480px) {
  .toast {
    font-size: 13px;
    padding: 10px 14px;
  }
}

thead th {
  position: sticky; 
  top: 0; 
  z-index: 1;
}