.officer-pictrue img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}
.officer-info p {
    margin-bottom: 5px;
}
ul.review-icons-list li.selected div {
    color: red;
}
ul.review-icons-list li.selected img {
    transform: scale(1.2);
    transition: all 0.2s ease-in-out;
}
ul.review-icons-list li {
    cursor: pointer;
    padding: 0 2px;
}
#modalReview ul.review-icons-list li > div {
    background: #68b158;
    padding: 4px;
    border-radius: 6px;
    color: #fff;
    font-size: 10px;
    min-height: 52px;
}
#modalReview ul.review-icons-list li > div i {
    color: #ffd200;
}
#modalReview ul.review-icons-list li:nth-child(2) div {
    background: #c0d158;
}
#modalReview ul.review-icons-list li:nth-child(3) div {
    background: #c3be47;
}
#modalReview ul.review-icons-list li:nth-child(4) div {
    background: #e3a045;
}
#modalReview ul.review-icons-list li:nth-child(5) div {
    background: #cd3731;
}
.card-review {
    max-width: 600px;
    margin: 0 auto;
}

.wrapper-complete .logo img {
    max-width: 120px;
}
.complete-content .thankyou-text {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #0e325d;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.card-review .item-criterion {
    border: 1px solid #68b158;
    border-radius: 15px;
    background: #fff;
}

#frm-review .form-control {
    border: 1px solid #68b158;
    border-radius: 20px;
}
button.submit-review {
    background-color: #0e325d;
    border-color: initial;
    color: #fff;
}
.wrapper-officer .officer-info {
    font-size: 18px;
    color: #ff0000;
    font-weight: bold;
}

.complete-header {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 10px;
}

.complete-header h1 {
    font-size: 5.5vw;
    color: #0e325d;
    text-transform: uppercase;
}

/* mỗi li là một cột flex theo chiều dọc */
#modalReview .review-icons-list li {
    display: flex;
    flex-direction: column; /* icon + nội dung xếp dọc */
    align-items: center; /* căn giữa icon */
    flex: 1 1 auto; /* để các li co giãn đều */
    text-align: center;
}

/* phần div chứa star + text tự co giãn */
#modalReview .review-icons-list li > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1; /* bắt buộc chiều cao đồng đều */
}

@media screen and (max-width: 768px) {
    #modalReview ul.review-icons-list li > div {
        font-size: 2.5vw;
    }
    #modalReview ul.review-icons-list li > div i {
        font-size: 2vw;
    }
    .wrapper-officer .officer-info {
        font-size: 3.8vw;
    }
    .complete-content .thankyou-text {
        font-size: 6vw;
    }
}