.fixedWidthLabel-1 {
  width: 15%;
  flex: 0 0 15%;  /* Prevent column from growing/shrinking */
}
.fixedWidthInput-1 {
  width: 30%;
  flex: 0 0 30%;  /* Prevent column from growing/shrinking */
}
.fixedWidthLabel-2 {
   width: 10%;
   flex: 0 0 10%;  /* Prevent column from growing/shrinking */
}
.fixedWidthInput-2 {
  width: 20%
  flex: 0 0 20%;  /* Prevent column from growing/shrinking */
}
.input-group-with-button {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem; /* Bootstrap default rounded */
    padding: 0.25rem 0.75rem;
    transition: box-shadow 0.2s ease-in-out;
    background-color: #fff;
  }
.input-group-with-button:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* Bootstrap focus ring */
  }
.input-group-with-button input {
  border: none;
  box-shadow: none !important;
  outline: none !important;
  flex: 1;
  padding: 0;
  background: transparent;
}
.input-group-with-button button {
    background: transparent;
    border: none;
    color: #6c757d;
    padding: 0 0.25rem;
    cursor: pointer;
  }
.input-group-with-button button:hover {
    color: #000;
  }
.field-group {
      position: relative;
  }
.visually-hidden-input {
      position: absolute;
      top: 100%;  /* Position below the gmp input */
      left: 0;
      width: 100%; /* Same width as the visible input */
      height: 1px; /* Very small height to ensure it's there but not visible */
      padding: 0;
      margin: 0;
      border: none;
      visibility: hidden; /* Completely invisible */
      z-index: -1; /* Behind all other elements */
 }
 /* make the left area behave like a form-control in an input-group */
.autocomplete-aligner {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;           /* important so it can shrink in flex */
}

.gmp-nudger {
  flex: 1 1 auto;
  margin-left: 0;         /* kill the -2px causing wrap */
  min-width: 0;
}

/* ensure the web component fills the lane */
gmp-place-autocomplete {
  display: block;
  width: 100%;
}
.scrollbar-placeholder {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

input.vertical-scrollbar {
  appearance: none;
  writing-mode: vertical-lr;
  background: transparent;
  width: 24px;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

input.vertical-scrollbar::-webkit-slider-runnable-track {
  background: transparent;
}

input.vertical-scrollbar::-webkit-slider-thumb {
  appearance: none;
  background: #666;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
  margin-left: 0; /* no offset needed now */
}

input.vertical-scrollbar::-moz-range-track {
  background: transparent;
}

input.vertical-scrollbar::-moz-range-thumb {
  background: #666;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.modal-stacked {
	/* z-index: 1049; */
    z-index: calc(var(--bs-modal-zindex) - 5); 
}
/* Scope to this carousel only */
.carousel-shell .carousel-control-prev-icon,
.carousel-shell .carousel-control-next-icon {
  display: none;            /* remove Bootstrap's sprite circle */
  background: none !important;
}

.carousel-shell .carousel-control-btn {
  background: transparent;
  border: 0;
  width: var(--ctrl-w);      /* same var you used to pad content */
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;            /* icon follows text color */
  opacity: .75;
}
.carousel-shell .carousel-control-btn:hover { opacity: 1; }
.carousel-shell .carousel-control-btn:focus { box-shadow: none; }
/* optional: subtle hover chip, comment out if you hate it */
/*
.carousel-shell .carousel-control-btn:hover {
  background-color: rgba(0,0,0,.05);
  border-radius: .375rem;
}
*/
