.Step1content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.contentText {
    width: 200%;
}
.contentImage img{
    width: 100%;
    height: auto;
    padding: 10px 10px;
}

/* Container Wrapper */
.wrapperRight {
    width: 350px;
    background-color: #f2f2f2;
    border-radius: 25px;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;

}

/* Counter Container */
.counter-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}
#Skaters {
    font-size: 25px;
    font-weight: bolder;
}

.counter-container button {
    background: none;
    border: none;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background-color: #6566ED;
    box-shadow: 0 0 1.5px 1.5px #5455C6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
/*    padding-left: 7px;*/
}
.counter-container button:hover {
    background-color: #5F60DE;
    cursor: pointer;
}

.counter-container #days {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.counter-label {
    padding-bottom: 15px;
}



/* Apply Button */
.apply-btn {
    background-color: #6566ED;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 1.5px 1.5px #5455C6;
    margin-top: auto;
}

.apply-btn:hover {
    background-color: #5F60DE;
    cursor: pointer;
}
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f2f2f2;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    font-size: 20px;
}

#popup button {
    margin: 10px;
}
#popup button {
    background-color: #6566ED;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 1.5px 1.5px #5455C6;
    margin-top: auto;
}

#popup button:hover {
    background-color: #5F60DE;
    cursor: pointer;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#reserveCheckboxContainer {
    display: block;
    margin-top: 20px;
}

.stepOneWrapper {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5%;
}
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.container-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    box-shadow: 0 0 1.5px 1.5px #ccc;
    border-radius: 5px;
    cursor: pointer;
}
.container-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.container-checkbox input:checked ~ .checkmark {
    background-color: #6566ED;
}
.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.container-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 980px) {
    .wrapperRight {
        width: 90%;
        background-color: #f2f2f2;
        border-radius: 25px;
        padding: 20px;
        border: 1px solid #ccc;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        display: flex;
        flex-direction: column;

    }
    .counter-container #days {
        font-size: 36px;
    }

    .details-container h2 {
        font-size: 20px;
    }

    .apply-btn {
        padding: 8px 20px;
        font-size: 16px;
    }
    .stepOneWrapper {
        padding-left: 5%;
        padding-right: 5%;

    }
    #popup {
        top: 25%;
        left: 30%;
        transform: translate(-25%, -25%);
        padding: 20px;
        font-size: 20px;
    }
}
