/* Centering and styling the slider-container */
.reservation .sliders-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    margin: auto;
}

/* Styling for the step-number and step-line */
.reservation .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px auto;
    position: relative;
    width: 100%;
    max-width: 40rem; /* Adjust max-width as needed */
}

.reservation .step-line {
    position: absolute;
    top: 50%;
    left: 5%; /* Adjust to align with the step-numbers */
    right: 5%; /* Adjust to align with the step-numbers */
    height: 3px;
    background-color: #ddd;
    z-index: 0;
}

.reservation .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 auto 0 auto;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    font-size: 16px;
    color: #000;
    z-index: 1;
    cursor: pointer;
}

.reservation .step-num.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Styling for the slider */
.reservation .sliders {
    position: relative;
    width: 100%;
    max-width: 50rem; /* Adjust max-width as needed */
    overflow: hidden;
    text-align: center;
    margin: auto; /* Centering the slider */
}

.reservation .slides {
    display: none;
    text-align: center;
}

.reservation .slides img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Add this line to limit the width of the image */
    margin: auto;
}

@media (max-width: 768px) {
    .reservation .slides img {
        max-width: 80%;
    }
}

.reservation .step-content {
    width: 100%;
    /* max-width: 50rem;  */
    margin: auto;
    padding: 1.5em;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
}

.reservation .step-content h5 {
    margin-bottom: 0rem;
  }
  
  .reservation .step-content p {
    margin-top: 0.50rem;
    margin-bottom: 2rem;
  }

.reservation .progress-bar {
    width: 100%;
    background-color: #EDEDED;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.reservation .progress {
    height: 20px;
    background-color: var(--accent-color);
    text-align: center;
    color: white;
    line-height: 20px;
}

.reservation .progress span {
    position: relative; 
    top: 50%; 
    left: 50%; 
    font-weight: 700;
    transform: translate(-50%, -50%); 
    display: inline-block;
    width: auto; 
    height: auto; 
  }


.reservation .prev, .reservation .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.reservation .prev {
    left: 10px;
}

.reservation .next {
    right: 10px;
}
