/* scan_guest.css
   "Guest session" banner shown in place of the list-selection panel when
   scanning without an authenticated session - see scan_guest.js.
   Amber/warning palette so it reads as "pay attention" without being an
   error; the link reuses the app's existing #2f7fbf accent blue (see
   scan_gallery.css) so it still feels like part of the same page. */

.guest-banner {
	display: none;
	flex-direction: column;
	gap: 8px;
	padding: 10px 12px;
	margin-bottom: 10px;
	border-radius: 6px;
	background: #fff8e1;
	border: 1px solid #f0c766;
	font-size: 0.85rem;
	line-height: 1.4;
	color: #5c4400;
}

.guest-banner-text strong {
	color: #3d2e00;
}

.guest-banner-link {
	align-self: flex-start;
	font-weight: 600;
	color: #2f7fbf;
	text-decoration: none;
}

.guest-banner-link:hover {
	text-decoration: underline;
}
