/* Стили для системы отзывов */

/* Вкладки отзывов */
.reviews-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding: 0 20px;
}

.tab-button {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    color: #666;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-button:hover {
    background: #e9ecef;
    border-color: #007bff;
    color: #007bff;
}

.tab-button.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.tab-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Адаптивность для вкладок */
@media (max-width: 768px) {
    .reviews-tabs {
        padding: 0 15px;
        gap: 8px;
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .reviews-tabs {
        padding: 0 10px;
        gap: 6px;
    }
    
    .tab-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.review-component {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.review-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.review-stats {
    display: flex;
    gap: 20px;
}

.stats-summary {
    display: flex;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    min-width: 80px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.review-filters .btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.review-filters .btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.review-list {
    margin-bottom: 20px;
}

.review-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #dee2e6;
    transition: all 0.3s ease;
}

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

.review-item.positive {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #f8f9fa 100%);
}

.review-item.negative {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8 0%, #f8f9fa 100%);
}

.review-item.neutral {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fffbf0 0%, #f8f9fa 100%);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-rating .fas.fa-star {
    color: #ffc107;
}

.review-rating .fas.fa-star-half-alt {
    color: #ffc107;
}

.review-rating .far.fa-star {
    color: #dee2e6;
}

.rating-value {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.review-content {
    margin-bottom: 15px;
}

.review-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.category-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
}

.category-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
}

.category-rating i {
    color: #007bff;
    font-size: 0.8rem;
}

.review-ride-info {
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
}

.review-ride-info i {
    margin-right: 5px;
}

.no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-reviews i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 15px;
}

.no-reviews p {
    margin: 0;
    font-size: 1.1rem;
}

.review-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.pagination-btn {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.pagination-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-dots {
    padding: 8px 12px;
    color: #666;
}

/* Форма создания отзыва */
.review-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.review-form-modal {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.review-form-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars-container {
    display: flex;
    gap: 5px;
}

.stars-container i {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #dee2e6;
}

.stars-container i:hover {
    transform: scale(1.1);
}

.stars-container .fas.fa-star {
    color: #ffc107;
}

.stars-container .fas.fa-star-half-alt {
    color: #ffc107;
}

.category-ratings-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.category-ratings-form h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1rem;
}

.category-ratings-form .stars-container i {
    font-size: 1.2rem;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.form-actions .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
}

.form-actions .btn-secondary:hover {
    background: #5a6268;
}

.form-actions .btn-primary {
    background: #007bff;
    color: white;
    border: none;
}

.form-actions .btn-primary:hover {
    background: #0056b3;
}

/* Адаптивность */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .stats-summary {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .stat-item {
        min-width: 60px;
        padding: 8px;
    }
    
    .review-filters {
        justify-content: center;
    }
    
    .review-form-modal {
        width: 95%;
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .review-component {
        padding: 15px;
        margin: 10px 0;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-rating {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    
    .category-ratings {
        flex-direction: column;
        gap: 8px;
    }
} 

/* Стили для экрана отзывов (ReviewsScreen) */

.reviews-screen {
    background: #fff;
    min-height: 100vh;
    padding: 20px;
}

.reviews-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #666;
}

.reviews-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reviews-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Основной контейнер с прокруткой */
.reviews-content-scrollable {
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 100px; /* Место для нижней навигации */
}

/* Стили для прокрутки */
.reviews-content-scrollable::-webkit-scrollbar {
    width: 6px;
}

.reviews-content-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.reviews-content-scrollable::-webkit-scrollbar-thumb {
    background: #3895e5;
    border-radius: 3px;
}

.reviews-content-scrollable::-webkit-scrollbar-thumb:hover {
    background: #2d7dd2;
}

/* Обновленные стили для рейтингов */
.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.rating-label {
    min-width: 80px;
    font-size: 14px;
    color: #666;
}

.rating-bar-container {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3895e5, #2d7dd2);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.rating-percent {
    min-width: 40px;
    font-size: 14px;
    color: #666;
    text-align: right;
}

/* Секции */
.reviews-stats-section,
.reviews-list-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviews-stats-section h3,
.reviews-list-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Обновленные стили для отзывов */
.review-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid #3895e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.review-item:hover {
    transform: translateY(-2px);
}

.review-item.positive {
    border-left-color: #28a745;
}

.review-item.negative {
    border-left-color: #dc3545;
}

.review-item.neutral {
    border-left-color: #ffc107;
}

/* Заголовок с информацией о пользователе */
.reviews-header-section {
    background: linear-gradient(135deg, #3895e5 0%, #2d7dd2 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.reviews-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reviews-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.reviews-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-user-details {
    text-align: center;
}

.reviews-user-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews-user-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.rating-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Статистика отзывов */
.reviews-stats-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.reviews-stats-grid {
    display: grid;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-label {
    min-width: 80px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.stat-value {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: #007bff;
    font-size: 0.9rem;
}

/* Фильтры */
.reviews-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.filter-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

/* Список отзывов */
.reviews-list {
    margin-bottom: 30px;
}

.review-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

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

.review-item.positive {
    border-left-color: #28a745;
}

.review-item.negative {
    border-left-color: #dc3545;
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 1rem;
}

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

.review-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
}

.review-rating i {
    color: #ffc107;
    font-size: 0.7rem;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.review-content {
    margin-bottom: 0;
}

.review-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

/* Сообщение об отсутствии отзывов */
.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-reviews-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-reviews-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Пагинация */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
    font-weight: 500;
    color: #666;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
}

.pagination-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-dots {
    padding: 10px 15px;
    color: #666;
    font-weight: 500;
}

/* Сообщение об ошибке */
.reviews-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: #666;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.error-message {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #dc3545;
}

/* Адаптивность для экрана отзывов */
@media (max-width: 768px) {
    .reviews-screen {
        padding: 15px;
    }
    
    .reviews-header-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .reviews-user-avatar {
        width: 60px;
        height: 60px;
    }
    
    .reviews-user-name {
        font-size: 1.3rem;
    }
    
    .rating-value {
        font-size: 1.5rem;
    }
    
    .reviews-stats-section {
        padding: 20px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-label {
        min-width: 60px;
        font-size: 0.8rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .reviews-header-section {
        padding: 15px;
    }
    
    .reviews-user-info {
        gap: 15px;
    }
    
    .reviews-user-avatar {
        width: 50px;
        height: 50px;
    }
    
    .reviews-user-name {
        font-size: 1.1rem;
    }
    
    .rating-value {
        font-size: 1.3rem;
    }
    
    .reviews-stats-section {
        padding: 15px;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .stat-bar {
        width: 100%;
    }
    
    .reviews-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-rating {
        align-self: flex-end;
        font-size: 0.6rem;
        flex-direction: row;
    }
} 

/* Кнопка назад */
.reviews-back-button {
    position: sticky;
    top: 0;
    background: white;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    z-index: 10;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #3895e5;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(56, 149, 229, 0.1);
    transform: translateX(-2px);
}

.btn-back i {
    font-size: 14px;
}

/* Улучшенная заглушка для пустого состояния */
.no-reviews-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.no-reviews-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3895e5 0%, #2d7dd2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(56, 149, 229, 0.3);
}

.no-reviews-icon i {
    font-size: 32px;
    color: white;
}

.no-reviews-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.no-reviews-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 300px;
}

.no-reviews-encouragement {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

.no-reviews-encouragement i {
    color: #3895e5;
    font-size: 16px;
}

.no-reviews-encouragement span {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews-back-button {
        padding: 12px 16px;
    }
    
    .btn-back {
        font-size: 15px;
        padding: 6px 10px;
    }
    
    .no-reviews-state {
        padding: 40px 16px;
        margin: 16px;
    }
    
    .no-reviews-icon {
        width: 60px;
        height: 60px;
    }
    
    .no-reviews-icon i {
        font-size: 24px;
    }
    
    .no-reviews-title {
        font-size: 18px;
    }
    
    .no-reviews-description {
        font-size: 13px;
    }
} 