/**
 * Lets Review Extension Frontend Styles
 */

/* Table styling - match conclusion style */
.lets-review-extension-fields-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.lets-review-extension-fields-table tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lets-review-extension-fields-table tr:last-child {
	border-bottom: none;
}

.lets-review-extension-fields-table td {
	padding: 8px 12px;
	vertical-align: top;
	font-size: 14px;
	line-height: 1.6;
}

.lets-review-extension-fields-table td:first-child {
	font-weight: 700;
	width: 30%;
}

.lets-review-extension-fields-table td:last-child {
	width: 70%;
}

/* Star rating styles - match Lets Review */
.lets-review-extension-fields-table .score-overlay-wrap__icon {
	position: relative;
	display: inline-block;
	color: inherit;
}

.lets-review-extension-fields-table .score-overlay-wrap__icon i {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	margin-right: 2px;
}

.lets-review-extension-fields-table .score-overlay-wrap__icon i:last-child {
	margin-right: 0;
}

.lets-review-extension-fields-table .score-overlay {
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	background: inherit;
	overflow: hidden;
}

/* Video wrapper - responsive with proper aspect ratio */
.lets-review-extension-video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin: 20px 0;
}

.lets-review-extension-video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.lets-review-extension-fields-table td {
		font-size: 13px;
		padding: 6px 8px;
	}

	.lets-review-extension-fields-table td:first-child {
		width: 35%;
	}

	.lets-review-extension-fields-table td:last-child {
		width: 65%;
	}

	.lets-review-extension-fields-table .score-overlay-wrap__icon i {
		font-size: 14px;
	}
}
