:root {
    --yellow: #FFBD13;
    --blue: #4383FF;
    --blue-d-1: #3278FF;
    --light: #F5F5F5;
    --grey: #AAA;
    --white: #FFF;
    --shadow: 8px 8px 30px rgba(0, 0, 0, .05);
}

.review-card {
    border-bottom: 1px solid #4f374dff;
    padding: 10px;
    margin: 0;
}
.category-title{
    font-size: 1.1rem;
}
#user_reviews {
    max-height: 800px;
    overflow: auto;
}

.review-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffcc00;
    margin-bottom: 5px;
}

.review-text {
    overflow: hidden;
    max-height: 46px;
    transition: height 0.3s ease;
}

.review-text.expanded {
    max-height: none;
    height: auto;
}

.toggle-link {
    color: var(--primary);
    cursor: pointer;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: flex-start;
}

#shareBtn {
    position: absolute;
    bottom: 0;
    right: 0;
    border: 1px solid white;
    border-radius: 5px 0 0 0;
}

#shareModal .modal-content {
    background-color: #ffffff54;
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.social-icons a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.icon.copy {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}

.fb {
    background-color: #3b5998;
}

.wp {
    background-color: #25d366;
}

.review-text {
    margin-bottom: 5px;
    line-height: 1.5em;
    word-wrap: break-word;
}

.toggle-link {
    color: #007bff;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

.toggle-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.review-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffffff;
}

.review-stars {
    margin-bottom: 8px;
}

.review-stars i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 14px;
}

.pagination {
    margin-top: 20px;
}

#loadingSpinner {
    padding: 20px;
}

.spinner-border {
    width: 2rem;
    height: 2rem;
}

#validityDays {
    background: transparent;
    color: white;
}