#step-indicators {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
    width: 87%;
    height: 700px;
    z-index: 1000;
}

.step-line {
    flex-grow: 1;
    border-left: 3px solid #ddd;
    position: relative;
}

.step-line.line-primary {
    border-color: #007bff;
}

.step-badge {
    font-size: 2em;
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    background: #ddd; /* grey background for not completed steps */
}

.step-badge.badge-primary {
    background: #007bff; /* blue background for completed steps */
    color: #fff; /* white text for completed steps */
}

#form-container {
    min-height: 400px;
}

.step-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    z-index: 2;
    width: 5%; 
    max-height: 80vh;
}

.step-container .step {
    flex: 1 0 auto;
    text-align: center;
}

.item {
    background-color: #e9e9e9;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* DROP DOWN PROPOSTA OPTIONS */
.proposta-options-menu {
}