.dad_comment{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px 20px 40px;
    overflow: hidden;
}

.comment{
    width: 65%;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #ff6c84;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    position: relative;
}

.avatar::after {
    content: '✓';
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: black;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px;
    line-height: 1;
}

.name-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: bold;
    font-size: 15px;
}

.verified-buyer {
    font-size: 13px;
    color: #666;
}

.rating-right-side {
    font-size: 16px;
    color: #ff6c84;
    margin-top: 2px;
}

.date-comment {
    font-size: 13px;
    color: #999;
}

.rating-sliders {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
    margin-bottom: 15px;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.question {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
}

.rating-scale {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 180px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 5px;
}

.scale-segment {
    width: 20%;
    height: 100%;
    background-color: #555;
    border-right: 1px solid #333;
    font-size: 0;
}

.scale-segment:last-child {
    border-right: none;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    width: 180px;
    margin-top: 2px;
    font-size: 11px;
    color: #555;
    text-align: center;
}

.rating-labels span {
    display: block;
    width: 33%;
}

.rating-labels .label-start {
    text-align: left;
    font-size: 12px;
}

.rating-labels .label-middle {
    text-align: center;
    font-size: 12px;
}

.rating-labels .label-end {
    text-align: right;
    font-size: 12px;
}

.answer {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.review-body {
    margin-bottom: 10px;
}

.review-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.review-text {
    font-size: 16px;
    line-height: 1.5;
    color: black;
    text-decoration: underline;
    margin-left: 8px;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.votes {
    display: flex;
    gap: 15px;
    margin-left: 15px;
}

.review-text1 {
    font-size: 14px;
    line-height: 1.5;
}

.helpfulness-text{
    font-size: 12px;
}

@media (max-width: 1024px){
    .dad_comment {
        padding: 0 40px;
        width: 100%;
    }

    .comment{
        width: 100%;
        padding-top: 25px;
    }

    .comment-header{
        flex-direction: row;
        width: 100%;
    }

    .rating-sliders{
        flex-direction: row;
        margin: 0 0 10px 35px;
        width: 90%;
    }

    .rating-item{
        width: auto;
    }

    .rating-right-side {
        font-size: 14px;
        width: auto;
    }

    .review-text {
        font-size: 15px;
    }
    .user-name{
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .dad_comment {
        padding: 0 40px;
        width: 100%;
    }

    .comment{
        width: 100%;
        padding-top: 25px;
    }

    .comment-header{
        flex-direction: row;
        width: 100%;
    }

    .rating-sliders{
        flex-direction: row;
        margin: 0 0 10px 35px;
        width: 90%;
    }

    .rating-item{
        width: auto;
    }

    .rating-right-side {
        font-size: 14px;
        width: auto;
    }

    .review-text {
        font-size: 15px;
    }
    .user-name{
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .dad_comment {
        padding: 0 24px;
        width: 100%;
    }

    .comment{
        width: 100%;
    }

    .comment-header{
        flex-direction: column;
        width: 100%;
    }

    .rating-sliders{
        flex-direction: column;
        margin: 0 0 10px 35px;
        width: 90%;
    }

    .rating-item{
        width: auto;
    }

    .rating-right-side {
        font-size: 14px;
        width: auto;
    }

    .review-text {
        font-size: 15px;
    }
    .user-name{
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .dad_comment {
        padding: 0 24px;
        width: 100%;
    }

    .comment{
        width: 100%;
    }

    .comment-header{
        flex-direction: column;
        width: 100%;
    }

    .rating-sliders{
        flex-direction: column;
        margin: 0 0 10px 35px;
        width: 90%;
    }

    .rating-item{
        width: auto;
    }

    .rating-right-side {
        font-size: 14px;
        width: auto;
    }

    .review-text {
        font-size: 15px;
    }
    .user-name{
        font-size: 14px;
    }
}