.container {
    display: flex
;
    gap: 20px;
    padding: 20px;
    margin-top: 150px;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: center;
}

.feedback-section, .form-section {
    flex: 1;
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 18px; /* Tăng kích thước chữ chung */
    line-height: 1.3;
}

.feedback-section {
    max-width: 80%;
}

.form-section {
    max-width: 45%;
}

.feedback {
    position: relative; /* Để chứa hình nền */
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.feedback h3 {
    margin: 10px 0;
    font-size: 20px; /* Tăng size tên khách hàng */
    font-weight: bold;
}

.feedback p {
    line-height: 1.5; /* Khoảng cách chữ trong nội dung feedback */
}

.stars {
    color: #ffcc00;
    font-size: 25px; /* Tăng size sao đánh giá */
}

.feedback-img {
    width: 100%; /* Hình ảnh sẽ chiếm toàn bộ chiều rộng của phần tử chứa */
    max-width: 100%; /* Loại bỏ giới hạn chiều rộng */
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    object-fit: cover; /* Đảm bảo ảnh hiển thị đẹp, không bị méo */
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    font-weight: bold;
    margin-top: 10px;
    font-size: 18px; /* Tăng size chữ label */
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px; /* Tăng size chữ trong ô nhập */
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 25px; /* Tăng size sao đánh giá */
    color: #ccc;
    cursor: pointer;
    padding: 5px;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffcc00;
}

.form-section button {
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px; /* Tăng size nút gửi */
}

.form-section button:hover {
    background-color: #0056b3;
}

#image-preview {
    margin-top: 10px;
    max-width: 100%;
}

#image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    background: white;
}

.feedback-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #f1f1f1;
    flex: 1; /* Mỗi nút sẽ tự giãn để vừa khung */
    margin: 0 5px;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: #666;
    transition: fill 0.3s;
}

.btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.btn.upvote {
    color: #007BFF;
}

.btn.upvote svg {
    fill: #007BFF;
}

.btn.upvote:hover {
    background-color: #cce5ff;
}

.btn.downvote {
    color: #DC3545;
}

.btn.downvote svg {
    fill: #DC3545;
}

.btn.downvote:hover {
    background-color: #f8d7da;
}

.btn.comment {
    color: #28A745;
}

.btn.comment svg {
    fill: #28A745;
}

.btn.comment:hover {
    background-color: #d4edda;
}

/* Nút Share được đẩy sát lề phải */
.btn-share {
    background-color: #007bff;
    color: white;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-left: auto;
}

.btn-share:hover {
    background-color: #0056b3;
}