.opinion-user-photo {
    border-radius: 50%;
    aspect-ratio: 1;
    height: 60px;
    width: 60px;
    margin-right: 15px;
    object-fit: cover;
}

.opinion-user-photo.company {
    border-radius: 10px;
}

.comment-user-photo.company {
    border-radius: 10px;
}

.comment-user-photo {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 50%;
}

.single-opinion {
    border-radius: 25px;
    transition: all 0.6s linear;
    transition-delay: 0.3s;
    position: relative;
}

.comment-list {
    display: flex;
    flex-direction: column;
    max-height: 300px;
    height: 100%;
    overflow-y: scroll;
}

.comment-date {
    font-style: italic;
}

.single-comment {
    border-left: 3px solid var(--pink-color);
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #10014605;
    position: relative;
}

.single-comment:nth-child(even) {
    border-left: 3px solid var(--pink-color);
    background-color: white;
}

.single-opinion:last-child {
    margin-bottom: 0 !important;
}

h4.comments-heading {
    font-size: 1.1rem !important;
}

.comments-heading {
    margin: 10px 0;
}

.comment-author {
    font-weight: 600;
    display: flex;
    align-items: center;
}
.comment-author i {
    padding-right: 10px;
    font-size: 1.5em;
}
.report-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    gap: 5px;
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    height: fit-content;
    transition: all 0.2s;
    position: absolute;
    right: 20px;
    top: 20px;
}

.report-button:hover {
    color: var(--dark-color);
}

.report-icon {
    height: 15px;
}

.single-opinion .stars {
    justify-content: flex-start !important;
}

.form-report-comment {
    position: absolute;
    top: 20px;
    right: 20px;
}