.phone_div1 form {
    display: none;
    justify-content: end;
}
.product-review-content{
    padding-top: 3rem;
}
.hamburger{
    display: none;
}
.review-section {
    padding-top: 1rem;
    margin: auto;
    border-radius: 2rem;
    padding-bottom: 1rem;
}
.popup-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 43%;
    margin: auto;
}
.review-title {
    color: white;
    background-color: darkgreen;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: auto;
    width: 43%;
    padding: 0.3rem 1rem;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.09rem;
    text-align: center;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}
.footer{
    margin-left: 0px;
    left: 0px;
    width: 100%;
}
.popup-form label {
    color: darkgreen;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 15px;
}
.popup-form input {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 15px;
    padding: 0 5px;
    width: 100%;
    height: 40px;
    /* border-bottom: 1px solid lightgray; */
    outline: none;
}
.popup-form select {
    width: 300px;
    color: #ffc100;
    width: 100%;
    height: 30px;
    /* border-bottom: 1px solid lightgray; */
    outline: none;
}
.popup-form button {
    background-color: #0f5937;
    color: white;
    padding: 4px 14px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: auto;
    border: none;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}
.popup-form textarea {
    height: 100px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 15px;
    padding: 0 5px;
    width: 100%;
    height: 100px;
    /* border-bottom: 1px solid lightgrey; */
    outline: none;
}
@media (max-width: 750px) {
    .review-title {
        width: 90%;
    }
.popup-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 89%;
    margin: auto;
}
.popup-form input, .popup-form select, .popup-form textarea {
        width: 100%;
    }

}
.message-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    position: relative;
}

.alert-success {
    background-color: #4CAF50; /* Green */
}

.alert-error {
    background-color: #f44336; /* Red */
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

