.average-rating-text{
    font-size: 2.2em;
    font-weight: 600;
    margin-top: -10px;
    color: #000;
}

.draccu-rating-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0000001e;
    padding-bottom: 10px;
}
.rating-average {
    width: 48%;
    border-right: 1px solid #0000001e;
}
.average-stars {
    display: flex;
    margin-top: -15px;
}
.average-stars .star {
    width: 17px;
    height: 17px;
    margin-right: 5px;
}

.reviews-and-comments-draccu-rating{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.rating-count {
    margin-top: 5px;
    font-size: .9em;
    font-weight: 500;
}

.comment-count{
    font-size: .9em;
    margin-top: 5px;
    font-weight: 500;
    color: #8d8d8d;
}

.rating-bars {
    width: 48%;
}

.rating-bar-container {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}
.rating-label {
    display: flex;
    gap: 5px;
    color: #8d8d8d;
    font-size: .8em;
    font-weight: 500;
}
.rating-bar {
    width: 100%;
    height: 10px;
    background-color: #F5F9FC;
    border-radius: 3px;
    margin-right: 7px;
}
.rating-bar-filled {
    height: 100%;
    border-radius: 3px;
}

.draccu-comments {
    margin-top: 20px;
}
.comment {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dadada;
}
.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.comment-author-info strong {
    font-size: .75em;
    font-weight: 500;
    color: #000;
}

.comment-author-info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-name{
    margin-top: -10px;
}

.comment-rating {
    margin-top: 5px;
    
}

.comment-rating .star{
    width: 17px;
    height: 17px;
    margin-right: 5px;
    
}
.comment-content {
    margin-top: -15px;
    font-size: .85em;
}
.comment-meta {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end; 
    
}
.comment-date {
    color: #8d8d8d;
    font-size: .7em;
    font-weight: 500;
    margin-top: 0;
}
.comment-likes {
    display: flex;
    align-items: center;
}
.like-icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin-right: 5px;
}

.like-count{
    font-size: .85em;
    font-weight: 600;
}

.comment-avatar img {
    border-radius: 50% !important; 
    width: 50px !important;  
    height: 50px !important;   
    object-fit: cover;  
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .rating-average {
        width: 50%;
    }
    
    .rating-bars {
        width: 46%;
    }

    .rating-count {
        margin-top: 5px;
        font-size: .8em;
        font-weight: 500;
    }
    
    .comment-count{
        font-size: .8em;
        margin-top: 5px;
        font-weight: 500;
        color: #8d8d8d;
    }
}