/* ==================== استایل‌های سیستم امتیازدهی و نظرات ==================== */

/* ==================== استایل‌های عمومی ==================== */
.pom-reviews-system {
    direction: rtl;
    font-family: 'Vazir', 'Segoe UI', Roboto, Tahoma, sans-serif;
}

.pom-rating-stars {
    display: inline-flex;
    gap: 2px;
    direction: ltr;
}

.pom-rating-stars i {
    color: #ddd;
    transition: color 0.2s;
}

.pom-rating-stars i.active {
    color: #FFD700;
}

.pom-rating-stars i.hover {
    color: #FFD700;
}

/* ==================== فرم نظردهی ==================== */
.pom-review-form-container {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pom-review-form-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 18px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.pom-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.pom-form-group {
    flex: 1;
    min-width: 200px;
}

.pom-form-group.pom-full-width {
    flex: 0 0 100%;
}

.pom-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
}

.pom-form-group input[type="text"],
.pom-form-group input[type="email"],
.pom-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.pom-form-group input[type="text"]:focus,
.pom-form-group input[type="email"]:focus,
.pom-form-group textarea:focus {
    outline: none;
    border-color: #0a1157;
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 17, 87, 0.1);
}

.pom-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.pom-form-group small {
    display: block;
    margin-top: 5px;
    color: #718096;
    font-size: 12px;
}

/* ستاره‌های ورودی امتیاز */
.pom-rating-input {
    margin-bottom: 15px;
}

.pom-rating-stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
}

.pom-rating-stars-input input {
    display: none;
}

.pom-rating-stars-input label {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
    transition: color 0.2s;
}

.pom-rating-stars-input label:hover,
.pom-rating-stars-input label:hover ~ label,
.pom-rating-stars-input input:checked ~ label {
    color: #FFD700;
}

.pom-rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #718096;
    padding: 0 5px;
}

.pom-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.pom-submit-btn {
    background: linear-gradient(135deg, #0a1157 0%, #0a1157 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pom-submit-btn:hover {
    background: linear-gradient(135deg, #0a1157 0%, #0a1157 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 17, 87, 0.1);
}

.pom-form-notice {
    font-size: 12px;
    color: #718096;
}

.pom-message {
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    display: none;
}

.pom-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.pom-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.pom-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    display: block;
}

/* ==================== آیتم نظر ==================== */
.pom-review-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.pom-review-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

}

.pom-reviewer-info {
    flex: 1;
}
.pom-review-date {
    font-size: 12px;
    color: #718096;
}

.pom-review-rating {
    flex-shrink: 0;
}


.pom-review-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-second);
}
.inactive:before {
    content: "\e951"
}
/* پاسخ مدیر */
.pom-review-reply {
    background: #f0f9f0;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border-right: 3px solid #4CAF50;
}

.pom-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #2e7d32;
    font-weight: 600;
}

.pom-reply-content {
    color: #388E3C;
}

.pom-reply-date {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: #66bb6a;
}

/* فوتر نظر */
.pom-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.pom-review-votes {
    display: flex;
    gap: 10px;
}

.pom-vote-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    color: #718096;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pom-vote-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.pom-helpful-btn:hover {
    color: #4CAF50;
    border-color: #4CAF50;
}

.pom-not-helpful-btn:hover {
    color: #f44336;
    border-color: #f44336;
}

.pom-report-btn {
    background: transparent;
    border: none;
    color: #718096;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.2s;
}

.pom-report-btn:hover {
    color: #f44336;
}

/* ==================== آمار امتیاز ==================== */
.pom-rating-stats {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.pom-rating-overview {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pom-rating-average {
    text-align: center;
    min-width: 120px;
}

.pom-rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.pom-rating-number small {
    font-size: 24px;
    color: #718096;
    font-weight: 400;
}

.pom-rating-stars-large {
    margin: 10px 0;
    justify-content: center;
}


.pom-rating-breakdown {
    flex: 1;
}

.pom-rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.pom-rating-label {
    width: 80px;
    font-size: 13px;
    color: #4a5568;
}

.pom-rating-bar-container {
    flex: 1;
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
}

.pom-rating-bar {
    height: 100%;
    background: linear-gradient(90deg, #0a1157 0%, #4CAF50 100%);
    border-radius: 5px;
}

/* ==================== صفحه اختصاصی مکان ==================== */
.pom-location-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pom-location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.pom-location-title-section {
    flex: 1;
}

.pom-location-title {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 28px;
}

.pom-location-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pom-location-category {
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.pom-location-rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 10px;
}

.pom-rating-number-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
}

.pom-rating-details {
    display: flex;
    gap: 5px;
}

.pom-location-actions {
    display: flex;
    gap: 10px;
}

.pom-location-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pom-location-info {
    margin-bottom: 30px;
}

.pom-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .pom-info-grid {
        grid-template-columns: 1fr;
    }
}

.pom-location-image {
    border-radius: 10px;
    overflow: hidden;
}

.pom-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s;
}

.pom-main-image:hover {
    transform: scale(1.02);
}

.pom-location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pom-detail-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-right: 3px solid #0a1157;
}

.pom-detail-item.pom-full-width {
    grid-column: 1 / -1;
}

.pom-detail-item i {
    color: #0a1157;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pom-detail-content {
    flex: 1;
}

.pom-detail-content strong {
    display: block;
    margin-bottom: 5px;
    color: #2d3748;
}

.pom-detail-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

.pom-detail-content a {
    color: #0a1157;
    text-decoration: none;
}

.pom-detail-content a:hover {
    text-decoration: underline;
}

.pom-location-map {
    margin-bottom: 30px;
}

.pom-location-map h3 {
    margin-bottom: 15px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== بخش نظرات در صفحه مکان ==================== */
.pom-location-reviews {
    margin-top: 40px;
}

.pom-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.pom-reviews-header h3 {
    margin: 0;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pom-reviews-sort select {
    padding: 8px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #4a5568;
}

.pom-reviews-form-section {
    margin: 30px 0;
}

.pom-reviews-form-section h4 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 18px;
}

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

.pom-no-reviews i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #cbd5e0;
}

.pom-no-reviews p {
    margin: 0;
    font-size: 16px;
}

/* صفحه‌بندی */
.pom-reviews-pagination {
    margin-top: 30px;
    text-align: center;
}

.pom-reviews-pagination .page-numbers {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pom-reviews-pagination .page-numbers li {
    margin: 0;
}

.pom-reviews-pagination .page-numbers a,
.pom-reviews-pagination .page-numbers span {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.2s;
}

.pom-reviews-pagination .page-numbers a:hover {
    background: #f8f9fa;
    border-color: #0a1157;
    color: #0a1157;
}

.pom-reviews-pagination .page-numbers .current {
    background: #0a1157;
    color: white;
    border-color: #0a1157;
}

.pom-reviews-pagination .page-numbers .prev,
.pom-reviews-pagination .page-numbers .next {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==================== ویجت‌ها ==================== */
.pom-recent-reviews {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.pom-reviews-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 18px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

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

.pom-review-card {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s;
}

.pom-review-card:hover {
    border-color: #0a1157;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pom-review-marker {
    margin-bottom: 10px;
}

.pom-review-marker a {
    color: #0a1157;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.pom-review-marker a:hover {
    text-decoration: underline;
}

.pom-review-text {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 10px;
}

.pom-review-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #718096;
}

.pom-reviewer,
.pom-review-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pom-review-rating {
    text-align: left;
}

.pom-reviews-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.pom-all-reviews-link {
    color: #0a1157;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pom-all-reviews-link:hover {
    text-decoration: underline;
}

/* ==================== مکان‌های برتر ==================== */
.pom-top-rated {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.pom-top-rated-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 18px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.pom-top-rated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .pom-top-rated-grid {
        grid-template-columns: 1fr;
    }
}

.pom-marker-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.pom-marker-card:hover {
    border-color: #0a1157;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pom-marker-image {
    height: 150px;
    overflow: hidden;
}

.pom-marker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pom-marker-card:hover .pom-marker-image img {
    transform: scale(1.05);
}

.pom-marker-content {
    padding: 15px;
}

.pom-marker-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #2d3748;
}

.pom-marker-title a {
    color: inherit;
    text-decoration: none;
}

.pom-marker-title a:hover {
    color: #0a1157;
}

.pom-marker-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.pom-marker-address {
    font-size: 12px;
    color: #718096;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pom-marker-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.pom-marker-rating .pom-rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
}

.pom-marker-rating .pom-review-count {
    font-size: 11px;
    color: #718096;
    margin-right: auto;
}

/* ==================== آمار ==================== */
.pom-reviews-stats-widget {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.pom-stats-title {
    margin-top: 0;
    margin-bottom: 25px;
    color: #2d3748;
    font-size: 18px;
    text-align: center;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.pom-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.pom-stat-item {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.pom-stat-item:hover {
    border-color: #0a1157;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pom-stat-item.pom-top-marker {
    grid-column: 1 / -1;
}

.pom-stat-icon {
    font-size: 32px;
    color: #0a1157;
    margin-bottom: 15px;
}

.pom-stat-content {
    text-align: center;
}

.pom-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 5px;
}

.pom-stat-label {
    font-size: 14px;
    color: #718096;
}

.pom-stat-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.pom-marker-name {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 5px;
}

.pom-marker-rating {
    color: #FFD700;
    font-weight: 600;
}

.pom-stats-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pom-stats-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==================== فرم جستجو ==================== */
.pom-reviews-search {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.pom-search-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 18px;
    text-align: center;
}

.pom-search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.pom-search-field {
    display: flex;
    flex-direction: column;
}

.pom-search-field label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pom-search-field input,
.pom-search-field select {
    padding: 10px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.pom-search-field button {
    margin-top: 23px;
    padding: 10px 20px;
}

.pom-search-categories {
    margin-top: 25px;
}

.pom-search-categories h4 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 16px;
    text-align: center;
}

.pom-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pom-category-tag {
    padding: 8px 15px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-left: 3px solid;
    border-radius: 6px;
    text-decoration: none;
    color: #4a5568;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pom-category-tag:hover {
    background: white;
    border-color: #0a1157;
    color: #0a1157;
    transform: translateY(-2px);
}

.pom-tag-count {
    background: #e2e8f0;
    color: #718096;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ==================== استایل‌های واکنش‌گرا ==================== */
@media (max-width: 768px) {
    .pom-location-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .pom-location-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .pom-reviews-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .pom-rating-overview {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .pom-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pom-form-group {
        min-width: 100%;
    }
    
    .pom-form-submit {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pom-review-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .pom-review-votes {
        justify-content: center;
    }
}

/* ==================== استایل‌های خطا و وضعیت‌ها ==================== */
.pom-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    text-align: center;
}

.pom-reviews-disabled,
.pom-login-required {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    text-align: center;
}

.pom-login-required a {
    color: #0056b3;
    font-weight: 600;
}

.pom-no-markers {
    text-align: center;
    padding: 40px 20px;
    color: #718096;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* ==================== انیمیشن‌ها ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pom-review-item {
    animation: fadeIn 0.3s ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pom-submit-btn:active {
    animation: pulse 0.3s ease-in-out;
}

/* ==================== استایل‌های پاپ‌آپ نقشه ==================== */
.pom-popup-rating {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.pom-popup-rating h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #2d3748;
}

.pom-popup-rating .pom-rating-stars {
    margin-bottom: 10px;
}

.pom-popup-rating .pom-rating-stars i {
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.pom-popup-rating .pom-rating-stars i:hover {
    transform: scale(1.2);
}

.pom-rating-average {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.pom-rating-number {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.pom-rating-count {
    font-size: 12px;
    color: #718096;
}

.pom-full-review-link {
    display: inline-block;
    margin-top: 10px;
    color: #0a1157;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pom-full-review-link:hover {
    text-decoration: underline;
}