/* Browser Internal Display widget — a dark-mode browser-window mockup
   (traffic light dots + a fake address bar) with a scrollable PDF
   rendered inside it via a bundled PDF.js-based viewer, so a PDF export
   of a site reads as a live page running inside a small browser window
   on the page. */

.bid {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-color: #1C1C1E;
	border: 1px solid #3A3A3D;
	border-radius: 12px;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
}

.bid__bar {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 38px;
	padding: 0 14px;
	background-color: #2B2B2F;
	flex-shrink: 0;
	box-sizing: border-box;
}

.bid__dots {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
}

.bid__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: block;
}

.bid__dot--1 {
	background-color: #FF5F57;
}

.bid__dot--2 {
	background-color: #FEBC2E;
}

.bid__dot--3 {
	background-color: #28C840;
}

.bid__url {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	max-width: 400px;
	margin: 0 auto;
	padding: 5px 12px;
	background-color: #3A3A3F;
	border-radius: 20px;
	min-width: 0;
	box-sizing: border-box;
}

.bid__lock {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	color: #9A9A9E;
}

.bid__url-text {
	font-size: 12px;
	color: #D6D6D8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bid__body {
	position: relative;
	width: 100%;
	height: 600px;
	background-color: #1C1C1E;
	overflow: hidden;
}

.bid__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.bid__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 20px;
	text-align: center;
	color: #8a8a8e;
	font-size: 14px;
	background-color: #1C1C1E;
}

@media ( max-width: 767px ) {
	.bid__bar {
		height: 32px;
		gap: 8px;
		padding: 0 10px;
	}

	.bid__url {
		max-width: none;
		padding: 4px 10px;
	}

	.bid__dot {
		width: 8px;
		height: 8px;
	}
}
