.review-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.review-box {
    width: 80%;
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 0 1.5rem;
    margin-bottom: 5rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
}

.review-box .stars {
    font-size: 1.3rem;
    color: #ffaa00;
}

.review-box .quotation-top {
    position: absolute;
    top: -30px;
    left: -9px;
    height: 45px;
}

.review-box .quotation-bottom {
    position: absolute;
    bottom: -18px;
    right: -9px;
}

.review-box .quotation {
    height: 45px;
    font-size: 6rem;
    width: fit-content;
    color: darkgray;
    opacity: 0.6;
}

.review-box .social_media_name {
    font-size: var(--font-size-m);
    color: blue;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.6;
}

.review-box .flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.review-box .review-text {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.review-box .date {
    font-size: var(--font-size-xs);
    color: darkgray;
    text-decoration: none;
    text-shadow: 0 0 black;
}

@media (hover: hover) {
    .review-box .social_media_name:hover {
        cursor: pointer;
        opacity: 1;
    }
}

.review-box p {
    margin: 1rem 0;
}