.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.step.active {
    background: #007bff;
}

.step.done {
    background: #28a745;
}

.step-content {
    display: none;
    margin-bottom: 20px;
}

.step-content.active {
    display: block;
}

.stepper-actions {
    display: flex;
    justify-content: space-between;
}

button:disabled {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
}