/* --- RATING STARS --- */
.td-rating-box .td-stars {
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-block;
}
.td-rating-box .td-stars i {
    transition: color 0.2s;
    padding: 0 2px;
}
.td-rating-box .td-stars:hover i {
    color: #e2e8f0; /* Reset về xám khi hover container */
}
.td-rating-box .td-stars i:hover,
.td-rating-box .td-stars i:hover ~ i {
    color: #e2e8f0; /* CSS trick để hover ngược, nhưng JS sẽ xử lý chính xác hơn */
}
/* Class active khi hover bằng JS */
.td-rating-box .td-stars i.hovered {
    color: #fbbf24 !important; /* Amber */
}

/* --- NOTIFICATION BELL --- */
.td-noti-dropdown {
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}
.td-noti-btn {
    position: relative;
}
.td-noti-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    display: none; /* Ẩn mặc định nếu = 0 */
}

/* --- REPORT MODAL --- */
.td-modal-report textarea {
    resize: none;
    min-height: 120px;
}
