.laptop-screen-tool__steps {
	margin-bottom: 1.25rem;
	padding-left: 1.15rem;
	color: #475569;
	font-size: 0.92rem;
}

.laptop-screen-tool__steps li + li {
	margin-top: 0.35rem;
}

.laptop-screen-tool__colors {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}

.laptop-screen-tool__color {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #fff;
	font-size: 0.84rem;
	color: #334155;
}

.laptop-screen-tool__color-swatch {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(15, 23, 42, 0.12);
	flex-shrink: 0;
}

.laptop-screen-tool__color-swatch--black {
	background: #000;
}

.laptop-screen-tool__color-swatch--white {
	background: #fff;
}

.laptop-screen-tool__color-swatch--red {
	background: #ff0000;
}

.laptop-screen-tool__color-swatch--green {
	background: #00cc00;
}

.laptop-screen-tool__color-swatch--blue {
	background: #0000ff;
}

.laptop-screen-tool__actions {
	margin-bottom: 1rem;
}

.laptop-screen-tool__note {
	margin-bottom: 0;
	font-size: 0.86rem;
	color: #64748b;
}

.laptop-screen-tool__result {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e2e8f0;
}

.laptop-screen-tool__result-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.85rem;
	color: #1e293b;
}

.laptop-screen-tool__result-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.laptop-screen-tool__result-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	background: #fff;
	color: #334155;
	font-size: 0.86rem;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.laptop-screen-tool__result-btn:hover {
	border-color: #94a3b8;
	background: #f8fafc;
}

.laptop-screen-tool__result-btn.is-selected {
	border-color: #2563eb;
	background: rgba(37, 99, 235, 0.08);
	color: #1d4ed8;
}

.laptop-screen-tool__result-message {
	padding: 0.85rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.5;
}

.laptop-screen-tool__result-message--ok {
	background: rgba(34, 197, 94, 0.12);
	color: #166534;
	border: 1px solid rgba(34, 197, 94, 0.35);
}

.laptop-screen-tool__result-message--warning {
	background: rgba(245, 158, 11, 0.12);
	color: #92400e;
	border: 1px solid rgba(245, 158, 11, 0.35);
}

.laptop-screen-tool__result-message--danger {
	background: rgba(239, 68, 68, 0.1);
	color: #991b1b;
	border: 1px solid rgba(239, 68, 68, 0.35);
}

.laptop-screen-tool__overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	cursor: pointer;
	touch-action: manipulation;
	user-select: none;
}

.laptop-screen-tool__overlay[hidden] {
	display: none !important;
}

.laptop-screen-tool__overlay-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	max-width: 90vw;
	text-align: center;
	pointer-events: none;
	color: rgba(255, 255, 255, 0.95);
}

.laptop-screen-tool__overlay--light .laptop-screen-tool__overlay-content {
	color: rgba(15, 23, 42, 0.9);
}

.laptop-screen-tool__overlay-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
}

.laptop-screen-tool__overlay-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid currentColor;
	background: transparent;
	opacity: 0.55;
	transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.laptop-screen-tool__overlay-dot.is-active {
	background: currentColor;
	opacity: 1;
	transform: scale(1.08);
}

.laptop-screen-tool__overlay-title {
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 600;
	line-height: 1.3;
}

.laptop-screen-tool__overlay-subtitle {
	font-size: clamp(0.95rem, 2vw, 1.15rem);
	line-height: 1.5;
	opacity: 0.92;
}
