/* views/advanced_reviews/list.tpl */
.ar-card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
	background: #fff;
}
.ar-card .card-header-custom {
	background: #fff;
	border-bottom: 1px solid #f0f0f5;
	padding: 16px 20px;
	border-radius: 12px 12px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ar-card .card-header-custom h6 {
	font-weight: 600;
	font-size: 0.95rem;
	color: #1a1d2e;
	margin: 0;
}
.ar-count {
	background: #f0f2f8;
	color: #5b6178;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	margin-left: 10px;
}

.ar-stats {
	display: flex;
	gap: 8px;
	margin-left: auto;
	margin-right: 16px;
}
.ar-stat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 12px;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 600;
}
.ar-stat-pending { background: #fffbeb; color: #d97706; }
.ar-stat-approved { background: #ecfdf5; color: #059669; }

.ar-name-cell { display: flex; align-items: center; gap: 12px; }
.ar-thumb {
	width: 48px; height: 48px;
	border-radius: 8px;
	object-fit: cover;
	border: 1px solid #f0f0f5;
	flex-shrink: 0;
	background: #f8f9fb;
}
.ar-info .ar-title {
	font-weight: 500;
	color: #1a1d2e;
	font-size: 0.85rem;
	margin: 0;
	line-height: 1.3;
}
.ar-info .ar-title a { color: #1a1d2e !important; text-decoration: none; font-weight: 500 !important; }
.ar-info .ar-title a:hover { color: #0d6efd !important; }
.ar-info .ar-sub {
	font-size: 0.75rem;
	color: #8b8fa3;
	margin: 2px 0 0 0;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.ar-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.68rem;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 4px;
}
.ar-badge-verified { background: #ecfdf5; color: #059669; }
.ar-badge-images { background: #eff6ff; color: #3b82f6; }
.ar-badge-replies { background: #f5f3ff; color: #7c3aed; }

.ar-stars { white-space: nowrap; }
.ar-stars i { font-size: 0.75rem; color: #fbbf24; }
.ar-stars i.gray { color: #e5e7eb; }
.ar-stars-num {
	font-weight: 600;
	font-size: 0.8rem;
	color: #1a1d2e;
	margin-right: 4px;
}

.ar-status-approved {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 600;
	background: #ecfdf5;
	color: #059669;
}
.ar-status-pending {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 600;
	background: #fffbeb;
	color: #d97706;
}
.ar-status-rejected {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 600;
	background: #fef2f2;
	color: #dc2626;
}

.ar-upvotes {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
	font-size: 0.8rem;
	color: #5b6178;
}
.ar-upvotes i { font-size: 0.7rem; }

.ar-date {
	font-size: 0.75rem;
	color: #8b8fa3;
	white-space: nowrap;
}

.ar-action-btn {
	width: 32px; height: 32px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e8e9f0;
	background: #fff;
	color: #5b6178;
	transition: all .15s ease;
	text-decoration: none;
	vertical-align: middle;
}
.ar-actions { display: inline-flex; align-items: center; gap: 4px; }
.ar-action-btn:hover { background: #f0f2f8; border-color: #d0d2dd; color: #1a1d2e; }
.ar-action-approve { border-color: #bbf7d0; color: #059669; }
.ar-action-approve:hover { background: #ecfdf5; border-color: #86efac; color: #047857; }

.ar-card .card-footer-custom {
	background: #fff;
	border-top: 1px solid #f0f0f5;
	padding: 12px 20px;
	border-radius: 0 0 12px 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ar-bulk {
	display: flex;
	align-items: center;
	gap: 8px;
}
.ar-bulk select {
	border: 1px solid #e0e4ea;
	border-radius: 8px;
	font-size: 0.78rem;
	padding: 5px 10px;
	color: #1a1d2e;
	background: #fff;
}
.ar-bulk button {
	padding: 5px 14px;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	border: 1px solid #e0e4ea;
	background: #fff;
	color: #5b6178;
	cursor: pointer;
	transition: all .15s;
}
.ar-bulk button:hover { background: #f0f2f8; }

.ar-empty {
	padding: 60px 20px;
	text-align: center;
}
.ar-empty i { font-size: 48px; color: #d1d5db; margin-bottom: 16px; display: block; }
.ar-empty h5 { color: #3a3f58; font-weight: 600; font-size: 1rem; }
.ar-empty p { color: #8b8fa3; font-size: 0.85rem; }

.ar-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	cursor: pointer;
	accent-color: #0d6efd;
}

/* Styles extracted from addon templates. */
[data-addon-style="advanced_reviews-07e8293cbd"] {
	font-size:0.8rem;
	color:#5b6178;
}
[data-addon-style="advanced_reviews-1d487f2d1b"] {
	font-size:0.85rem;
	color:#1a1d2e;
}
[data-addon-style="advanced_reviews-2c1e8a3a97"] {
	background:#ecfdf5;
	color:#059669;
	padding:3px 10px;
	border-radius:20px;
	font-size:0.72rem;
	font-weight:600;
}
[data-addon-style="advanced_reviews-30f6b8ca69"] {
	width:24px;
	height:24px;
	padding:0;
	line-height:24px;
}
[data-addon-style="advanced_reviews-36eea6a36d"] {
	font-size:0.7rem;
	color:#fbbf24;
}
[data-addon-style="advanced_reviews-49e17b5e11"] {
	font-size:36px;
	color:#d1d5db;
}
[data-addon-style="advanced_reviews-63e6baf9db"] {
	font-size:10px;
	opacity:.5;
}
[data-addon-style="advanced_reviews-663d8b79c9"] {
	background:#ecfdf5;
	color:#059669;
	font-size:0.65rem;
	padding:2px 6px;
	border-radius:4px;
	margin-left:4px;
}
[data-addon-style="advanced_reviews-9dc3276d4b"] {
	width:100px;
	height:100px;
}
[data-addon-style="advanced_reviews-a4cc68a755"] {
	background:#fef2f2;
	color:#dc2626;
	padding:3px 10px;
	border-radius:20px;
	font-size:0.72rem;
	font-weight:600;
}
[data-addon-style="advanced_reviews-aad91a2a07"] {
	font-size:12px;
}
[data-addon-style="advanced_reviews-b0a369d940"] {
	background:#fff7ed;
	color:#c2410c;
}
[data-addon-style="advanced_reviews-b874bd678b"] {
	font-size:0.85rem;
}
[data-addon-style="advanced_reviews-c83e0c9476"] {
	color:#3a3f58;
	font-weight:600;
}
[data-addon-style="advanced_reviews-c863cc8b1a"] {
	font-weight:600;
	font-size:0.85rem;
	color:#1a1d2e;
}
[data-addon-style="advanced_reviews-dfd7a49829"] {
	white-space:nowrap;
}
[data-addon-style="advanced_reviews-ecccb67bde"] {
	object-fit:cover;
}
[data-addon-style="advanced_reviews-f9e21b3a04"] {
	background:#fffbeb;
	color:#d97706;
	padding:3px 10px;
	border-radius:20px;
	font-size:0.72rem;
	font-weight:600;
}
