.reviews-list-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.review-item:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-author,
.review-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.review-author i,
.review-date i {
    color: #30915a;
    font-size: 14px;
    width: 16px;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.review-date span {
    color: #666;
}

/* Rating Stars */
.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
    text-shadow: 0 0 3px rgba(255, 193, 7, 0.3);
}

.rating-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Doctor Info */
.review-doctor,
.review-filial {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #30915a;
    font-size: 14px;
}

.review-doctor i,
.review-filial i {
    color: #30915a;
    font-size: 16px;
    width: 16px;
    flex-shrink: 0;
}

.doctor-label,
.filial-label {
    color: #666;
    font-size: 14px;
}

.doctor-name,
.filial-name {
    font-weight: 600;
    color: #333;
}

.doctor-specialization {
    color: #888;
    font-size: 13px;
    font-style: italic;
    margin-left: 5px;
}

.filial-address {
    color: #888;
    font-size: 13px;
    margin-left: 5px;
}

/* Review Content */
.review-content {
    margin-bottom: 20px;
}

.review-text {
    line-height: 1.6;
    color: #333;
    font-size: 15px;
    padding: 15px 0;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.review-date i {
    color: #30915a;
}

.review-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.review-status.moderation {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.review-status.moderation i {
    color: #f39c12;
}

/* Empty State */
.reviews-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.empty-icon {
    margin-bottom: 20px;
}

.empty-icon i {
    font-size: 64px;
    color: #dee2e6;
}

.reviews-empty h3 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 24px;
}

.reviews-empty p {
    color: #6c757d;
    font-size: 16px;
}

/* Pagination */
.reviews-pager {
    margin: 30px 0;
    text-align: center;
}

.reviews-pager-top {
    margin-bottom: 30px;
}

.reviews-pager-bottom {
    margin-top: 30px;
}

/* Pagination Styles */
.reviews-pager .bx-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.reviews-pager .bx-pagination a,
.reviews-pager .bx-pagination .bx-pag-current {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #007bff;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.reviews-pager .bx-pagination a:hover {
    background: #30915a;
    color: #fff;
    border-color: #30915a;
}

.reviews-pager .bx-pagination .bx-pag-current {
    background: #30915a;
    color: #fff;
    border-color: #30915a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-list-container {
        padding: 10px;
    }
    
    .review-item {
        padding: 20px 15px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .review-meta {
        gap: 6px;
    }
    
    .review-rating {
        align-self: flex-start;
        margin-top: 5px;
    }
    
    .review-doctor,
    .review-filial {
        padding: 8px 12px;
        flex-wrap: wrap;
        font-size: 13px;
    }
    
    .doctor-specialization,
    .filial-address {
        width: 100%;
        margin-left: 24px;
        margin-top: 2px;
        font-size: 12px;
    }
    
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .empty-icon i {
        font-size: 48px;
    }
    
    .reviews-empty h3 {
        font-size: 20px;
    }
    
    .reviews-empty p {
        font-size: 14px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item {
    animation: fadeInUp 0.6s ease forwards;
}

.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }
.review-item:nth-child(4) { animation-delay: 0.4s; }
.review-item:nth-child(5) { animation-delay: 0.5s; }

/* Print Styles */
@media print {
    .review-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        margin-bottom: 20px;
    }
    
    .reviews-pager {
        display: none;
    }
    
    .star.filled {
        color: #000 !important;
    }
} 