.abs-booking-wrapper {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

/* Steps Nav */
.abs-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.abs-steps li {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #ddd;
    margin-right: 5px;
    border-radius: 4px;
}

.abs-steps li.active {
    background: #ff6a2b;
    color: #fff;
}

/* Step Panels */
.abs-step {
    display: none;
}

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

.abs-step input,
.abs-step select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.abs-step button {
    background: #ff6a2b;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}

.abs-slots label {
    display: block;
    margin-bottom: 10px;
}