.freshmetrics-wizard {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333; /* Background color updated */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff; /* Text color updated */
}

.wizard-header {
    text-align: center;
    margin-bottom: 20px;
}

.wizard-header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fecb02; /* Secondary color */
}

.wizard-header .logo span {
    font-size: 18px;
    color: #bae801; /* Primary color */
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.question-header {
    margin-bottom: 20px;
    text-align: center;
}

.question-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff; /* Text color updated */
}

.answers {
    margin-bottom: 20px;
}

.answer-option {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff; /* Text color updated */
}

.answer-option input {
    margin-right: 10px;
}

.wizard-nav {
    text-align: center;
}

.wizard-next,
.wizard-submit {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #333; /* Background color updated */
    background-color: #bae801; /* Primary color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.wizard-back {
    display: inline-block;
    font-size: 16px;
    color: #fff; /* Text color updated */
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.wizard-next:hover,
.wizard-submit:hover {
    background-color: #fecb02; /* Secondary color */
}

.wizard-note {
    font-size: 14px;
    color: #fff; /* Text color updated */
    text-align: center;
    margin-top: 10px;
}

.progress-bar {
    margin-top: 20px;
}

.progress-indicator {
    height: 10px;
    background-color: #bae801; /* Primary color */
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #fff; /* Text color updated */
    margin-top: 5px;
}

/* Specific styling for form fields */
.answers label {
    display: block;
    margin-bottom: 10px;
    color: #fff; /* Text color updated */
}

.answers input[type="text"],
.answers input[type="email"],
.answers input[type="tel"] {
/*    width: calc(100% - 20px);*/
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #fff;
}

.answers input[type="text"]:focus,
.answers input[type="email"]:focus,
.answers input[type="tel"]:focus {
    border-color: #bae801; /* Primary color */
    outline: none;
}

.wizard-note p {
    font-size: 14px;
    color: #fff; /* Text color updated */
    margin-top: 15px;
}

.wizard-next:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Styling for question pages, not the first page */
.wizard-step:not(.first-page) .answers {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the No and Yes buttons */
    margin-top: 20px;
}

.wizard-step:not(.first-page) .answer-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 2px solid #fecb02; /* Primary color */
    border-radius: 5px;
    background-color: #fecb02;
    color: #fff; /* Primary color */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 0;
    padding: 8px 35px
}

.wizard-step:not(.first-page) .answer-option input {
    display: none; /* Hide the actual radio button */
}

.wizard-step:not(.first-page) .answer-option span {
    font-size: 16px;
    flex: 1;
}

.wizard-step:not(.first-page) .answer-option:hover {
    background-color: #bae801; /* Primary color */
    border: 2px solid #bae801;
    color: #fff; /* Background color */
}

.wizard-step:not(.first-page) .answer-option input:checked + span {
    background-color: #bae801; /* Primary color */
    color: #333; /* Background color */
    padding: 10px 20px;
    border-radius: 5px;
}

.summary-text {
    text-align: center;
    margin-bottom: 20px;
    color: #fff; /* Text color updated */
}
