

.wizard-dots {
    display: flex;
    justify-content: center;
}
.wizard-dots span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ddd;
}
.wizard-dots span.active {
    background-color: #0073aa;
}


button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #005f8a;
}
