/*--------------Reference-------------  --*/
            
           .REFERENCE-BOX {
    text-align: center;
    margin-top: 10vh;
    width: 100%;
}

.REFERENCE {
        margin-top: 5vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

#reviewBoxContainer {
    width: 60vh;
    max-width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.review {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    opacity: 0;
    font-size: 20px;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.review.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    background-color: transparent;
}

.review.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.review.slide-in-right {
    transform: translateX(100%);
    opacity: 1;
}

.review.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.review.slide-in-left {
    transform: translateX(-100%);
    opacity: 1;
}

.REFERENCE-BOX button {
    background-color: transparent;
    border: none;
    padding: 10px;
    margin: 50px;
    color: #007bff;
    cursor: pointer;
    font-size: 30px;
}

.REFERENCE-BOX button:focus {
    outline: none;
}

.customer-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.stars {
    color: gold;
    margin-bottom: 10px;
    font-size: 20px;
}

@media (max-width:600px){
#reviewBoxContainer{
    width: 100%;
}
.REFERENCE-BOX button{
    margin: 5px;
    padding: 5px;
}
.review{
    font-size: 18px;
}
}

.ReferenceButton {
    width: 15vh;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    background-color: #007bff; 
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}
.ReferenceLink{
    text-decoration: none;
}
.ReferenceButton:hover {
    background-color: #0056b3;
}
/*--------------Reference---------------*/    