/* ═══════════════════════════════════════════════
   Survey System — שמחה בקליק
   ═══════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
	--sv-primary: #e91e63;
	--sv-primary-light: #fce4ec;
	--sv-primary-dark: #c2185b;
	--sv-success: #4caf50;
	--sv-warning: #ff9800;
	--sv-danger: #f44336;
	--sv-dark: #212121;
	--sv-gray: #757575;
	--sv-light: #f5f5f5;
	--sv-white: #fff;
	--sv-radius: 12px;
	--sv-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	--sv-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.14);
	--sv-transition: 0.25s ease;
}

/* ─── Buttons ─── */
.survey-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 24px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--sv-transition);
	text-decoration: none;
	line-height: 1.4;
}
.survey-btn-primary {
	background: var(--sv-primary);
	color: var(--sv-white);
}
.survey-btn-primary:hover {
	background: var(--sv-primary-dark);
	transform: translateY(-1px);
}
.survey-btn-secondary {
	background: var(--sv-light);
	color: var(--sv-dark);
}
.survey-btn-success {
	background: var(--sv-success);
	color: var(--sv-white);
}
.survey-btn-warning {
	background: var(--sv-warning);
	color: var(--sv-white);
}
.survey-btn-danger {
	background: var(--sv-danger);
	color: var(--sv-white);
}
.survey-btn-small {
	padding: 6px 14px;
	font-size: 13px;
}
.survey-btn-large {
	padding: 14px 40px;
	font-size: 18px;
	border-radius: 12px;
}
.survey-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ─── Admin Page ─── */
.survey-admin-page {
	max-width: 1000px;
	margin: 40px auto;
	padding: 0 20px;
}
.survey-admin-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
}
.survey-admin-form-wrap {
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
	padding: 30px;
	margin-bottom: 30px;
}
.survey-admin-form-wrap h2 {
	font-size: 20px;
	margin-bottom: 20px;
}
.survey-form-row {
	margin-bottom: 18px;
}
.survey-form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--sv-dark);
}
.survey-form-row input,
.survey-form-row select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	transition: border-color var(--sv-transition);
}
.survey-form-row input:focus,
.survey-form-row select:focus {
	outline: none;
	border-color: var(--sv-primary);
}
#survey-filter-row select {
	margin-bottom: 0;
}
#survey-filter-row select + select {
	margin-top: 8px;
}
.survey-form-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
.survey-admin-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	overflow: hidden;
	box-shadow: var(--sv-shadow);
}
.survey-admin-table th,
.survey-admin-table td {
	padding: 12px 16px;
	text-align: right;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}
.survey-admin-table th {
	background: var(--sv-light);
	font-weight: 700;
}
.survey-actions-cell {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.survey-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}
.survey-status-draft {
	background: #e0e0e0;
	color: #616161;
}
.survey-status-active {
	background: #e8f5e9;
	color: #2e7d32;
}
.survey-status-completed {
	background: #fff3e0;
	color: #e65100;
}

/* ─── Survey Page ─── */
.survey-page {
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 0;
	background: #fff;
}
.survey-header {
	text-align: center;
	padding: 30px 20px 0;
}
.survey-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 4px;
}
.survey-round-info {
	color: var(--sv-gray);
	font-size: 13px;
	margin-bottom: 6px;
}

/* ─── Tabs ─── */
.survey-tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #eee;
	margin-bottom: 0;
}
.survey-tab {
	flex: 1;
	padding: 12px 16px;
	border: none;
	background: none;
	font-size: 15px;
	font-weight: 600;
	color: var(--sv-gray);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all var(--sv-transition);
}
.survey-tab.active {
	color: var(--sv-primary);
	border-bottom-color: var(--sv-primary);
}
.survey-tab-content {
	display: none;
}
.survey-tab-content.active {
	display: block;
}

/* ─── OTP Auth ─── */
.survey-auth {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 20px;
}
.survey-auth-card {
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	padding: 40px 30px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-shadow: var(--sv-shadow-hover);
	position: relative;
}
.survey-auth-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: var(--sv-gray);
	cursor: pointer;
	padding: 4px 8px;
	transition: color var(--sv-transition);
}
.survey-auth-close:hover {
	color: var(--sv-dark);
}
.survey-auth-card h2 {
	font-size: 20px;
	margin-bottom: 24px;
}
.survey-auth-step input[type="email"],
.survey-auth-step input[type="text"] {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #eee;
	border-radius: 10px;
	font-size: 16px;
	text-align: center;
	margin-bottom: 14px;
	transition: border-color var(--sv-transition);
}
.survey-auth-step input[type="email"]:focus,
.survey-auth-step input[type="text"]:focus {
	outline: none;
	border-color: var(--sv-primary);
}
.survey-otp-input {
	font-size: 28px !important;
	letter-spacing: 12px;
	font-weight: 700;
}
.survey-auth-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 18px;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.5;
	color: var(--sv-gray);
	text-align: start;
	padding: 0 4px;
}
.survey-auth-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	margin-top: 2px;
	accent-color: var(--sv-primary);
	cursor: pointer;
	flex-shrink: 0;
}
.survey-auth-step .survey-btn {
	width: 100%;
}
.survey-auth-error {
	color: var(--sv-danger);
	margin-top: 12px;
	font-size: 14px;
}

/* ─── Feed (Snap Scroll) ─── */
.survey-feed {
	height: calc(100dvh - 160px);
	overflow-y: auto;
	scroll-snap-type: y mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	padding: 0;
}
.survey-feed::-webkit-scrollbar {
	display: none;
}
.survey-card {
	height: calc(100dvh - 160px);
	scroll-snap-align: start;
	scroll-snap-stop: always;
	display: flex;
	flex-direction: column;
	background: var(--sv-white);
	overflow: hidden;
	position: relative;
}
.survey-card-image {
	flex: 1;
	overflow: hidden;
	position: relative;
	min-height: 0;
}
.survey-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.survey-card-actions {
	padding: 16px 18px;
	display: flex;
	justify-content: center;
	flex-shrink: 0;
	background: var(--sv-white);
}
/* ─── Votes Remaining Bar ─── */
.survey-votes-remaining {
	text-align: center;
	padding: 10px 16px;
	background: var(--sv-primary-light);
	color: var(--sv-primary-dark);
	font-weight: 700;
	font-size: 14px;
	position: sticky;
	top: 0;
	z-index: 10;
	max-width: 500px;
	margin: 0 auto;
}

.survey-card-counter {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	z-index: 2;
	pointer-events: none;
}
.survey-vote-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 2px solid #eee;
	background: var(--sv-white);
	padding: 10px 28px;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	transition: all var(--sv-transition);
}
.survey-vote-btn:hover:not(:disabled) {
	border-color: var(--sv-primary);
	transform: scale(1.05);
}
.survey-vote-btn.active {
	border-color: var(--sv-primary);
	background: var(--sv-primary-light);
}
.heart-icon {
	font-size: 22px;
	transition: transform 0.3s ease;
}
.survey-vote-btn.active .heart-icon {
	animation: heartPop 0.4s ease;
}
@keyframes heartPop {
	0% { transform: scale(1); }
	50% { transform: scale(1.4); }
	100% { transform: scale(1); }
}
.vote-count {
	font-weight: 700;
	color: var(--sv-dark);
}
.survey-card.voted {
	border: 2px solid var(--sv-primary-light);
}
.survey-share-cta {
	text-align: center;
	padding: 20px;
}
.survey-share-fab {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 100;
	writing-mode: vertical-rl;
}
.survey-share-fab button {
	border: none;
	background: var(--sv-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	padding: 14px 8px;
	border-radius: 0 8px 8px 0;
	box-shadow: 2px 0 8px rgba(0,0,0,0.15);
	transition: background 0.2s ease;
	white-space: nowrap;
	letter-spacing: 1px;
}
.survey-share-fab button:hover {
	background: var(--sv-primary-dark);
}
.survey-completed-banner {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, var(--sv-primary-light), #f3e5f5);
	margin: 16px;
	border-radius: var(--sv-radius);
}
.survey-completed-banner h2 {
	font-size: 24px;
	margin-bottom: 8px;
}

/* ─── Leaderboard ─── */
.survey-leaderboard {
	padding: 20px 16px;
}
.survey-leaderboard h2 {
	text-align: center;
	font-size: 22px;
	margin-bottom: 10px;
}
.survey-round-badge {
	text-align: center;
	margin-bottom: 20px;
	color: var(--sv-gray);
	font-size: 14px;
}
.leaderboard-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.leaderboard-rank {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--sv-light);
	border-radius: 50%;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
}
.leaderboard-item:nth-child(1) .leaderboard-rank {
	background: #ffd700;
	color: #fff;
}
.leaderboard-item:nth-child(2) .leaderboard-rank {
	background: #c0c0c0;
	color: #fff;
}
.leaderboard-item:nth-child(3) .leaderboard-rank {
	background: #cd7f32;
	color: #fff;
}
.leaderboard-thumb {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}
.leaderboard-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.leaderboard-bar-wrap {
	flex: 1;
	background: var(--sv-light);
	border-radius: 20px;
	overflow: hidden;
	height: 32px;
}
.leaderboard-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--sv-primary), var(--sv-primary-dark));
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 0 12px;
	min-width: 60px;
	transition: width 0.6s ease;
}
.leaderboard-votes {
	color: var(--sv-white);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}
.survey-share-leaderboard {
	text-align: center;
	padding: 20px 0;
	color: var(--sv-gray);
	font-size: 14px;
}

/* ─── Provider Dashboard ─── */
.survey-provider-dashboard {
	padding: 20px 16px;
}
.survey-provider-dashboard h2 {
	text-align: center;
	font-size: 22px;
	margin-bottom: 20px;
}
.provider-rank-card {
	text-align: center;
	background: linear-gradient(135deg, #e8eaf6, #e3f2fd);
	border-radius: var(--sv-radius);
	padding: 24px;
	margin-bottom: 20px;
}
.provider-rank-number {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 4px;
}
.provider-total-votes {
	color: var(--sv-gray);
	font-size: 15px;
}
.provider-photos-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}
.provider-photo-item {
	position: relative;
	border-radius: var(--sv-radius);
	overflow: hidden;
	aspect-ratio: 1;
}
.provider-photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.provider-photo-votes {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
}
.provider-share-cta {
	text-align: center;
	padding: 16px 0;
}
.provider-share-cta p {
	margin-bottom: 12px;
	color: var(--sv-gray);
}

/* ─── Share Page ─── */
.survey-share-page {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px 20px 50px;
}
.share-header {
	text-align: center;
	margin-bottom: 24px;
}
.share-header h1 {
	font-size: 26px;
	margin-bottom: 4px;
}
.share-survey-name {
	color: var(--sv-gray);
	font-size: 15px;
}
.share-meta {
	margin-top: 8px;
	color: var(--sv-gray);
	font-size: 13px;
}
.share-photos-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}
.share-photo-card {
	border-radius: var(--sv-radius);
	overflow: hidden;
	aspect-ratio: 1;
}
.share-photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─── Reactions ─── */
.share-reactions {
	text-align: center;
	margin-bottom: 30px;
}
.share-reactions h3 {
	font-size: 18px;
	margin-bottom: 14px;
}
.reaction-buttons {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.reaction-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	border: 2px solid #eee;
	background: var(--sv-white);
	border-radius: 12px;
	padding: 10px 14px;
	cursor: pointer;
	transition: all var(--sv-transition);
	min-width: 56px;
}
.reaction-btn:hover {
	border-color: var(--sv-primary);
	transform: scale(1.1);
}
.reaction-btn.active {
	border-color: var(--sv-primary);
	background: var(--sv-primary-light);
}
.reaction-emoji {
	font-size: 24px;
}
.reaction-count {
	font-size: 12px;
	font-weight: 700;
	color: var(--sv-gray);
}
.share-cta {
	text-align: center;
	padding: 10px 0 20px;
}

/* ─── Wall Page ─── */
.survey-wall-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 30px 20px 50px;
}
.wall-header {
	text-align: center;
	margin-bottom: 30px;
}
.wall-header h1 {
	font-size: 28px;
	margin-bottom: 4px;
}
.wall-subtitle {
	color: var(--sv-gray);
}
.wall-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}
.wall-card {
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
	overflow: hidden;
	transition: box-shadow var(--sv-transition), transform var(--sv-transition);
}
.wall-card:hover {
	box-shadow: var(--sv-shadow-hover);
	transform: translateY(-2px);
}
.wall-card-thumbs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
}
.wall-card-thumbs img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}
.wall-card-meta {
	display: flex;
	justify-content: space-between;
	padding: 10px 14px 4px;
	font-size: 13px;
	color: var(--sv-gray);
}
.wall-card-reactions {
	padding: 4px 14px;
	display: flex;
	gap: 8px;
	font-size: 14px;
}
.wall-card-actions {
	padding: 10px 14px 14px;
}
.wall-cta {
	text-align: center;
	padding: 30px 0;
}
.wall-empty {
	text-align: center;
	color: var(--sv-gray);
	font-size: 16px;
	grid-column: 1 / -1;
}
.survey-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--sv-gray);
	font-size: 18px;
}

/* ─── Desktop: center the feed ─── */
@media (min-width: 641px) {
	.survey-header,
	.survey-votes-remaining,
	.survey-tab-content {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.survey-feed {
		height: calc(100dvh - 180px);
	}
	.survey-card {
		height: calc(100dvh - 180px);
	}
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
	.survey-page {
		max-width: 100%;
	}
	.survey-header {
		padding: 10px 16px 0;
	}
	.survey-title {
		font-size: 20px;
		margin-bottom: 2px;
	}
	.survey-feed {
		height: calc(100dvh - 158px);
	}
	.survey-card {
		height: calc(100dvh - 158px);
	}
	.survey-admin-table th,
	.survey-admin-table td {
		padding: 8px 10px;
		font-size: 12px;
	}
	.survey-actions-cell {
		flex-direction: column;
	}
	.share-photos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.wall-grid {
		grid-template-columns: 1fr;
	}
}

/* ─── Photo Management Admin ─── */
.survey-admin-photos-wrap {
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
	padding: 30px;
	margin-top: 30px;
	border-top: 3px solid var(--sv-warning);
}
.survey-admin-photos-wrap h2 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--sv-warning);
}
.survey-photos-manage-status {
	font-size: 14px;
	color: var(--sv-gray);
	margin-bottom: 16px;
}
.survey-photos-manage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.survey-photo-manage-item {
	background: var(--sv-white);
	border: 2px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	transition: all 0.2s ease;
}
.survey-photo-manage-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}
.survey-photo-manage-item.disabled {
	opacity: 0.4;
	border-color: var(--sv-danger);
}
.survey-photo-manage-item.disabled img {
	filter: grayscale(1);
}
.survey-photo-manage-info {
	padding: 6px 8px;
	font-size: 11px;
	line-height: 1.4;
}
.spm-provider {
	display: block;
	font-weight: 600;
	color: var(--sv-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.spm-votes {
	display: block;
	color: var(--sv-gray);
	font-size: 11px;
}
.spm-fake {
	color: #e67e22;
	font-size: 10px;
	font-weight: 600;
}
.spm-boost {
	display: flex;
	gap: 4px;
	align-items: center;
	padding: 4px 6px;
	flex-wrap: wrap;
	justify-content: center;
}
.spm-boost-input {
	width: 55px;
	padding: 3px 6px;
	border: 1px solid #ddd;
	border-radius: 6px;
	text-align: center;
	font-size: 13px;
}
.survey-photo-manage-item .survey-btn-small {
	width: 100%;
	border-radius: 0;
	font-size: 11px;
	padding: 5px 4px;
}
@media (max-width: 900px) {
	.survey-photos-manage-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 600px) {
	.survey-photos-manage-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ─── Email Admin Section ─── */
.survey-admin-email-wrap {
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
	padding: 30px;
	margin-top: 30px;
	border-top: 3px solid var(--sv-primary);
}
.survey-admin-email-wrap h2 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--sv-primary);
}
.survey-admin-email-wrap textarea {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid #eee;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	resize: vertical;
	transition: border-color var(--sv-transition);
}
.survey-admin-email-wrap textarea:focus {
	outline: none;
	border-color: var(--sv-primary);
}
.survey-email-status {
	margin-top: 16px;
	padding: 12px 18px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
}
.survey-email-status.success {
	background: #e8f5e9;
	color: #2e7d32;
}
.survey-email-status.error {
	background: #ffebee;
	color: #c62828;
}
.survey-email-test-row {
	margin-bottom: 18px;
}
.survey-email-test-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}
.survey-email-test-input {
	display: flex;
	gap: 10px;
	align-items: center;
}
.survey-email-test-input input[type="email"] {
	flex: 1;
	padding: 10px 14px;
	border: 2px solid #eee;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color var(--sv-transition);
}
.survey-email-test-input input[type="email"]:focus {
	outline: none;
	border-color: var(--sv-primary);
}
.survey-btn-warning {
	background: var(--sv-warning);
	color: var(--sv-white);
}
.survey-btn-warning:hover {
	background: #f57c00;
}
.survey-email-preview-wrap {
	margin-top: 20px;
}
.survey-email-preview-wrap h3 {
	font-size: 16px;
	margin-bottom: 10px;
}
.survey-email-recipients {
	font-size: 14px;
	color: var(--sv-gray);
	margin-bottom: 10px;
}
.survey-email-preview-frame {
	width: 100%;
	height: 600px;
	border: 2px solid #eee;
	border-radius: 8px;
	background: var(--sv-light);
}

/* ─── Email Prepare Section ─── */
.survey-prepare-summary {
	padding: 14px 18px;
	background: var(--sv-light);
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.8;
}
.survey-prepare-detail-title {
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	color: var(--sv-primary-dark);
	padding: 6px 0;
}
.survey-prepare-list {
	padding: 8px 0;
	max-height: 300px;
	overflow-y: auto;
}
.survey-prepare-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 12px;
	font-size: 13px;
	border-bottom: 1px solid #f0f0f0;
}
.survey-prepare-row:last-child {
	border-bottom: none;
}
.survey-prepare-email {
	color: var(--sv-gray);
	direction: ltr;
}

/* ─── Subscribers Section ─── */
.survey-admin-subscribers-wrap {
	margin-top: 40px;
	padding: 24px;
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
}
.survey-admin-subscribers-wrap h2 {
	margin-bottom: 16px;
}
.survey-subscribers-list {
	margin-top: 16px;
}
.survey-subscribers-list td a {
	color: var(--sv-primary-dark);
	text-decoration: none;
}
.survey-subscribers-list td a:hover {
	text-decoration: underline;
}

/* Email Tracks */
.survey-admin-tracks-wrap {
	margin-top: 40px;
	padding: 24px;
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
}
.survey-admin-tracks-wrap h2 {
	margin-bottom: 16px;
}
.survey-tracks-summary {
	margin: 12px 0;
	padding: 12px 16px;
	background: #f8f4ef;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.8;
}
.survey-tracks-list {
	margin-top: 16px;
}
.survey-tracks-list td a {
	color: var(--sv-primary-dark);
	text-decoration: none;
}
.survey-tracks-list td a:hover {
	text-decoration: underline;
}

/* General Campaign */
.survey-admin-campaign-wrap {
	margin-top: 40px;
	padding: 24px;
	background: var(--sv-white);
	border-radius: var(--sv-radius);
	box-shadow: var(--sv-shadow);
	border-top: 3px solid var(--sv-primary);
}
.survey-admin-campaign-wrap h2 {
	margin-bottom: 16px;
}
.survey-admin-campaign-wrap textarea {
	width: 100%;
	resize: vertical;
	min-height: 120px;
}
.survey-admin-campaign-wrap input[type="text"],
.survey-admin-campaign-wrap input[type="url"],
.survey-admin-campaign-wrap input[type="email"] {
	width: 100%;
}
