#LeadSourceDetailDiv {
    transition: visibility 0s, height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

#LeadSourceDetailDiv[style*="visibility: visible"] {
    opacity: 1;
}

#stateDiv, #countryDiv, #militaryBranchDiv, #phoneDiv, #appSubSourceDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensures the label is aligned properly */
}

#ssnGroup {
    display: block;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

#ssnInfoBlock {
   overflow: hidden; /* No scrolling, allow full expansion */
}

.tags-container {
	
}

.detail-tag {
	border: 1px solid #bbb;
	margin-right: 10px;
}

.display-lg-6 {
    @media (min-width: 992px) {
        font-size: 4.5rem;
        font-weight: 300;
        line-height: 1.2;
    }
}

.info-block {
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    background-color: #fced89;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.roundLabel {
    width: 100% !important;
}

.show {
    max-height: 500px; /* Adjust as needed */
    opacity: 1;
}

.slide-toggle {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.theme-bpu-deep {
    background-color: #494142;
    color: #fff;
}

.theme-bpu-gray {
    background-color: #696969;
    color: #fff;
}

.w-lg-25 {
    @media (min-width: 992px) {
        width: 25% !important;
    }
}

/* Form Stages */
#formStages {
  position: relative;
  height: 500px; /* adjust to match image height */
}
.form-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 0;
}
.form-slide.active {
  opacity: 1;
  z-index: 1;
}
.is-invalid {
  border-color: #dc3545;
}

