.review_container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    margin-top: 100px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.review_container h1{
    text-align: center;
    color: #ac894b;
}

form input{
    display: block;
    margin: auto;
    width: 90%;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    border: 1px solid #ac894b;
    border-radius: 4px;
    border-radius: 10px;
}

form textarea {
    display: block;
    margin: auto;
    width: 90%;
    height: 400px;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    border: 1px solid #ac894b;
    border-radius: 4px;
    border-radius: 10px;
}

form button {
    width: 140px;
    height: 45px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    background-color: #b59c72;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, border 0.2s ease;
}

form button:hover {
    background-color: #fff;
    color: #ac894b;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.5);
}

#reviewList .review {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.star-rating {
    direction: rtl;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
}

.star-img {
    width: 34px;
    height: 34px;
    transition: transform 0.2s;
}

.star-rating input:checked ~ label img,
.star-rating label:hover img,
.star-rating label:hover ~ label img {
    filter: grayscale(0);
    transform: scale(1.2);
}

.star-img {
    filter: grayscale(100%);
}

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

    .review_container h1{
        font-size: 20px;
    }

    form input{
        font-size: 14px;
    }

    form textarea {
        height: 300px;
        font-size: 14px;
    }
}
