.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: center;
}

.step-indicator ul {
    display: flex;
    padding: 0;
    list-style-type: none;
}

.step-indicator li {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background-color: #e0e0e0;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.step-indicator li.active {
    background-color: #4CAF50;
}

.text-truncate {
    display: block;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-row b {
    flex-basis: 30%;
}

.detail-row span {
    flex-basis: 65%;
}