/* General body styling */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}
/* wizard container styling */
.wizard {
    display:block;
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2%;
}

.control-wrapper {
    display: inline-block;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    position: relative;
}
/* Wizard step styling */
.wizard-step {
    display: none; /* Hide all steps by default */
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.wizard-step.active {
    display:contents; /* Show the active step */
    opacity: 1;
    z-index: 1;
}

/* Button styling */
button {
    padding: 10px 20px;
    margin: 10px 5px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #6200ea;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3700b3;
}

button:disabled {
    background-color: #bdbdbd;
    cursor: not-allowed;
}
/* Controls section styling */
#controls {
    text-align: center;
    margin-top: 20px;
}

#controls button {
    background-color: #03dac6;
    color: #000000;
}

#controls button:hover {
    background-color: #018786;
}

/* Headings */
h1, h2, h3 {
    font-weight: 500;
    color: #6200ea;
    text-align: center;
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    text-align: center;
}
