/* General Styles */
#wpmsb-form {
    max-width: 450px;
    margin: auto;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: background 0.3s ease-in-out;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.step-circle {
    width: 35px;
    height: 35px;
    background: #ccc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    transition: background 0.3s;
}

.step-indicator span {
    font-size: 14px;
    color: #666;
    margin: 0 10px;
}

/* Active Step */
.step-circle.active {
    background: #0073aa;
}

/* Form Step */
.step {
    display: none;
    padding: 15px;
    border-radius: 10px;
}

.step.active {
    display: block;
    background: #f0f8ff; /* Light blue background for active step */
}

/* Form Fields */
.step select{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* Buttons */
button#wpmsb-submit, .prev-step, .next-step {
    padding: 10px 15px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background: #005a87;
}

/* Success Message */
#wpmsb-message {
    margin-top: 15px;
    font-weight: bold;
    color: green;
}

.step-3 {
    text-align: center;
    padding: 20px;
}

.gift-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.gift-option {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

input[type=radio] {
    visibility: visible !important;
    opacity: 1; !important;
    width: 10px !important;
    height: 10px !important;
    display: block !important;
    margin-right:5px !important;
}

.gift-option:hover {
    background: #0073aa;
    color: white;
}

:where(.wp-site-blocks *:focus) {
    outline-width: 0px !important;
}
.gift-option input {
    margin-right: 10px;
}
.step input[type = "radio"] {
    width: 12% !important;
}
div#wpmsb-form input, div#wpmsb-form select {
    width: 100%;
    height: 50px !important;
    border: 0px;
    border-radius: 8px;
    margin: 5px 0px;
}
/* Responsive Design */
@media (max-width: 600px) {
    .gift-options {
        flex-direction: column;
        align-items: center;
    }
}