.wizard-wrapper {
    width: clamp(320px, 95vw, 1100px);
    margin: 3rem auto;
}


.progress-bar {
    min-width: 0em; /* ensures the text is visible even at 0% */
}

#formControls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#loadText {
    margin-left: 0.5rem;
}

.tab-body {
    min-height: 450px;
    border: 1px solid rgba(0,0,0,.125);
    border-top: 0;
    border-radius: 0 0 .5rem .5rem;
    padding: 1rem;
    background: lightblue;
}

.nav-tabs .nav-link {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.nav-tabs {
    border-bottom: 1px solid rgba(0,0,0,.125);
}

    .nav-tabs .nav-link.active {
        background-color: lightblue;
        border-color: rgba(0,0,0,.125) rgba(0,0,0,.125) transparent;
    }

textarea {
    width: 100%;
    height: 350px;
    resize: vertical;
    border: none;
    padding: 10px;
}

 /* Override the default Bootstrap width (full width of the window) for dropdown list.  Size only to fit its content */
.form-select.auto-width {
  width: auto !important;
  min-width: unset !important;
  max-width: max-content !important;
  display: inline-block !important;
}
	
/* make disabled buttons more prominent */
.btn:disabled,
.btn.disabled {
    background-color: #ccc !important; /* darker gray */
    color: #666 !important; /* stronger text color */
    opacity: 1 !important; /* remove Bootstrap’s default fade */
}
