/* Sticky Navbar Style */
.top-nav-outer {
position: sticky;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: #fdfdfa;
}

.top-nav {
max-width: 700px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
}

.nav-left,
.nav-right {
display: flex;
align-items: center;
gap: 16px;
}

.nav-left button,
.nav-right button {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #000;
}

.steps-indicator {
display: flex;
gap: 30px;
align-items: center;
justify-content: center;
flex-grow: 1;
}

.step {
display: flex;
flex-direction: column;
align-items: center;
}

.step-circle {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #eee;
color: #999;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
margin-bottom: 4px;
}

.step.active .step-circle {
background-color: #373e1d;
color: #fff;
}

.step-label {
font-size: 12px;
color: #666;
white-space: nowrap;
}

.step.active .step-label {
color: #373e1d;
font-weight: 600;
}

@media (max-width: 768px) {
.top-nav {
  padding: 12px 16px;
}

.steps-indicator {
  flex-wrap: wrap;
  gap: 10px;
}

.step-circle {
  width: 24px;
  height: 24px;
}

.step-label {
  font-size: 8px;
}
}

#navBarTitle {
  margin: 10px 0px;
  font-size: 16px;
}