/**
 * Custom styling on top of Bootstrap + the SMN theme override layer.
 * The form design language below follows the client's supplied prototype
 * (SMN_Speaker_Intake_Form1_v2), reskinned to the SMN-Glassline hybrid:
 * Glassline's fog-grey neutrals, flat surfaces, and 6/10/16px radii
 * (designdotmd "glassline"), with SMN blue #283b91 as the single accent
 * and serif headings per the client's brand.
 */

/* Geist — vendored variable fonts (SIL OFL, see ../fonts/OFL.txt). */
@font-face {
	font-family: 'Geist';
	src: url('../fonts/Geist-Variable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Geist Mono';
	src: url('../fonts/GeistMono-Variable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:focus-visible {
	outline: 3px solid #5468c9;
	outline-offset: 2px;
}

/* ── Dashboard sidebar ──────────────────────────────────────────── */

.smn-shell {
	display: flex;
	align-items: stretch;
	min-height: 100vh;
}

.smn-shell > .container,
.smn-shell > .container-fluid {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 1.5rem;
}

.smn-sidebar {
	flex: 0 0 auto;
	width: 240px;
	background: #fff;
	border-right: 1px solid #e3e7eb;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 0;
	height: 100vh;
	transition: width 0.18s ease;
	overflow: hidden;
}

.smn-sidebar.collapsed {
	width: 68px;
}

.smn-sidebar__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 12px;
	border-bottom: 1px solid #e9ecef;
	gap: 8px;
}

.smn-sidebar__brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

/* The wordmark PNG's leftmost square is the emblem — shown alone when
   collapsed via a background crop of the same file. */
.smn-sidebar__brand-emblem {
	display: none;
	width: 40px;
	height: 40px;
	background-size: auto 40px;
	background-position: left center;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.smn-sidebar__brand-wordmark {
	height: 36px;
	width: auto;
}

.smn-sidebar.collapsed .smn-sidebar__brand-wordmark {
	display: none;
}

.smn-sidebar.collapsed .smn-sidebar__brand-emblem {
	display: block;
}

.smn-sidebar.collapsed .smn-sidebar__top {
	flex-direction: column;
	gap: 10px;
}

.smn-sidebar__toggle {
	background: #f1f3f5;
	border: 1px solid #dde2e7;
	border-radius: 6px;
	width: 30px;
	height: 30px;
	padding: 4px;
	cursor: pointer;
	color: #4a5568;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.smn-sidebar__toggle:hover {
	background: #e2e6ea;
	color: #0f1419;
}

.smn-sidebar__toggle svg {
	width: 16px;
	height: 16px;
	transition: transform 0.18s ease;
}

.smn-sidebar.collapsed .smn-sidebar__toggle svg {
	transform: rotate(180deg);
}

.smn-sidebar__nav {
	flex: 1 1 auto;
	padding: 10px 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	overflow-y: auto;
}

.smn-sidebar__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	color: #1c2733;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.smn-sidebar__link svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.smn-sidebar__link .bi {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.smn-sidebar__link:hover {
	background: #e8ecf8;
	color: #283b91;
}

.smn-sidebar__link.active {
	background: #283b91;
	color: #fff;
}

.smn-sidebar.collapsed .smn-sidebar__label {
	display: none;
}

.smn-sidebar.collapsed .smn-sidebar__link {
	justify-content: center;
	padding: 10px;
}

.smn-sidebar__bottom {
	border-top: 1px solid #e9ecef;
	padding: 10px 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.smn-sidebar__user {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	white-space: nowrap;
	font-size: 13px;
	color: #4a5568;
	min-width: 0;
}

.smn-sidebar__user .smn-sidebar__label {
	overflow: hidden;
	text-overflow: ellipsis;
}

.smn-sidebar.collapsed .smn-sidebar__user {
	justify-content: center;
	padding: 8px;
}

.smn-sidebar__avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #283b91;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.smn-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
}

.smn-event-card {
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease;
}

/* Flat system: hover feedback is the accent hairline, not a shadow. */
.smn-event-card:hover {
	border-color: #283b91;
	color: inherit;
}

/* ── Events list: card/table views + AJAX loading state ────────── */

#smn-events-region.smn-view-cards .smn-events-table-wrap {
	display: none;
}

#smn-events-region.smn-view-table .smn-card-grid {
	display: none;
}

#smn-events-region.is-loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.smn-events-table-wrap tr[data-smn-event-href] {
	cursor: pointer;
}

.smn-events-table-wrap th a[data-smn-sort] {
	text-decoration: none;
	color: inherit;
	white-space: nowrap;
}

.smn-events-table-wrap th a[data-smn-sort]:hover {
	color: #283b91;
}

.smn-stat-tile {
	transition: border-color 0.15s ease;
}

.smn-stat-tile__icon {
	font-size: 22px;
	color: #b6bfc9;
	line-height: 1;
}

a[data-smn-list-link]:hover .smn-stat-tile__icon {
	color: #283b91;
}

a[data-smn-list-link]:hover .smn-stat-tile {
	border-color: #283b91;
}

/* ── Prototype form design language ─────────────────────────────── */

.smn-form-card {
	background: #fff;
	border: 1px solid #e3e7eb;
	border-radius: 16px;
	overflow: hidden;
}

.smn-form-header {
	background: #283b91;
	padding: 1.4rem 2rem;
	display: flex;
	align-items: center;
	gap: 14px;
}

.smn-form-header__logo {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	font-family: Georgia, serif;
}

.smn-form-header__org {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
}

.smn-form-header__sub {
	color: rgba(255, 255, 255, 0.65);
	font-size: 12px;
	margin-top: 2px;
}

.smn-form-body {
	padding: 2rem 2.25rem 2.5rem;
}

.smn-form-intro {
	background: #e8ecf8;
	border-radius: 10px;
	border: 1px solid #c3cdec;
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	font-size: 13.5px;
	color: #2a3a74;
	line-height: 1.65;
}

.field-group {
	margin-bottom: 1.5rem;
}

.field-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #0f1419;
	margin-bottom: 5px;
}

.field-label .required {
	color: #e8610a;
	margin-left: 3px;
	font-weight: 700;
}

.field-hint {
	font-size: 12px;
	color: #4a5568;
	margin-bottom: 7px;
	line-height: 1.5;
	display: block;
}

.optional-tag {
	font-size: 11px;
	color: #6b7280;
	font-weight: 400;
	margin-left: 6px;
}

/* Fields are Bootstrap .form-control/.form-select now (styled in the
   theme override layer); only the textarea sizing is form-specific. */
.field-group textarea {
	min-height: 80px;
}

.char-count {
	font-size: 11px;
	color: #6b7280;
	text-align: right;
	margin-top: 5px;
}

.char-count.warn {
	color: #e8610a;
}

.field-divider {
	border: none;
	border-top: 1px solid #e9ecef;
	margin: 1.75rem 0;
}

.field-error {
	font-size: 12px;
	color: #c0392b;
	margin-top: 5px;
	display: none;
	align-items: center;
	gap: 5px;
}

.field-group.has-error input,
.field-group.has-error select,
.field-group.has-error textarea {
	border-color: #c0392b;
}

.field-group.has-error .field-error {
	display: flex;
}

.field-group.has-error .wed-nav,
.field-group.has-error .wed-grid {
	border-color: #c0392b;
}

/* ── Co-speaker rows ────────────────────────────────────────────── */

/* Each co-speaker is its own card so consecutive rows read as separate
   people instead of one dense column of fields. */
.smn-speaker-row {
	border: 1.5px solid #e3e7eb;
	border-radius: 10px;
	background: #f8f9fa;
	padding: 16px 16px 6px;
	margin-bottom: 16px;
}

.smn-speaker-row > .d-flex {
	margin-bottom: 0.9rem !important;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid #e9ecef;
}

.smn-speaker-row .field-group {
	margin-bottom: 1.1rem;
}

.smn-speaker-row .field-group:last-child {
	margin-bottom: 0.6rem;
}

/* ── Wednesday chip picker ──────────────────────────────────────── */

.wed-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1.5px solid #dde2e7;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	transition: border-color 0.15s;
}

.wed-nav-btn {
	background: #f1f3f5;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	color: #4a5568;
	font-size: 12.5px;
	font-family: inherit;
	font-weight: 600;
	transition: background 0.12s, color 0.12s;
	white-space: nowrap;
	flex-shrink: 0;
}

.wed-nav-btn:hover:not(:disabled) {
	background: #e2e6ea;
	color: #0f1419;
}

.wed-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.wed-month-label {
	font-size: 13.5px;
	font-weight: 700;
	color: #0f1419;
	text-align: center;
	flex: 1;
	padding: 10px 8px;
	border-left: 1px solid #e2e6ea;
	border-right: 1px solid #e2e6ea;
}

.wed-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	background: #fff;
	border: 1.5px solid #dde2e7;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 10px 12px 12px;
	transition: border-color 0.15s;
}

.wed-chip {
	padding: 10px 6px;
	border: 1.5px solid #dde2e7;
	border-radius: 6px;
	background: #fff;
	font-size: 12.5px;
	font-family: inherit;
	color: #1c2733;
	cursor: pointer;
	transition: all 0.12s;
	text-align: center;
	line-height: 1.35;
}

.wed-chip:hover:not(:disabled) {
	background: #e8ecf8;
	border-color: #283b91;
	color: #283b91;
}

.wed-chip.selected {
	background: #283b91;
	border-color: #283b91;
	color: #fff;
	font-weight: 600;
}

.wed-chip:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

/* A talk already scheduled on this Wednesday — small amber dot. */
.wed-chip.booked {
	position: relative;
}

.wed-chip.booked::after {
	content: '';
	position: absolute;
	top: 4px;
	right: 4px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #e8610a;
}

.wed-chip.booked.selected::after {
	background: #fff;
}

.wed-empty {
	font-size: 12.5px;
	color: #6b7280;
	font-style: italic;
	padding: 8px 2px 4px;
	text-align: center;
	grid-column: 1 / -1;
}

.wed-selected-display {
	display: none;
	align-items: center;
	gap: 8px;
	background: #e8ecf8;
	border: 1.5px solid #283b91;
	border-radius: 10px;
	padding: 9px 13px;
	margin-top: 7px;
}

.wed-selected-display.visible {
	display: flex;
}

.wed-selected-text {
	flex: 1;
	font-size: 13px;
	font-weight: 600;
	color: #0f1419;
}

.wed-clear {
	font-size: 11px;
	color: #4a5568;
	cursor: pointer;
	text-decoration: underline;
	background: none;
	border: none;
	font-family: inherit;
	flex-shrink: 0;
}

.fixed-time-display {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f1f3f5;
	border: 1.5px solid #dde2e7;
	border-radius: 10px;
	padding: 10px 13px;
	font-size: 14px;
	color: #0f1419;
	font-weight: 500;
}

.fixed-time-display .fixed-note {
	font-size: 11.5px;
	color: #4a5568;
	font-weight: 400;
}

/* ── Sticky talk navigator ──────────────────────────────────────── */

.smn-talk-nav {
	position: sticky;
	top: 1rem;
}

.smn-talk-nav__item {
	font-size: 13px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}

.smn-talk-nav__item.active {
	background: #283b91;
	border-color: #283b91;
	color: #fff;
	font-weight: 600;
}

/* ── Speaker blocks ─────────────────────────────────────────────── */

.smn-speaker-block {
	border: 1.5px solid #dde2e7;
	border-radius: 10px;
	margin-bottom: 1rem;
	background: #fff;
}

.smn-speaker-block.has-block-error {
	border-color: #c0392b;
}

.smn-speaker-block summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 14px;
	padding: 14px 18px;
}

.smn-speaker-block summary::-webkit-details-marker {
	display: none;
}

.smn-speaker-block__fields {
	padding: 0 18px 18px;
}

/* ── Success view ───────────────────────────────────────────────── */

.success-view {
	text-align: center;
	padding: 2rem 1rem;
}

.success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #283b91;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}

.summary-card {
	background: #fff;
	border: 1px solid #dde2e7;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin: 1.25rem auto;
	max-width: 540px;
	text-align: left;
}

.sc-label {
	font-size: 11px;
	font-weight: 600;
	color: #4a5568;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 10px;
}

.summary-row {
	display: flex;
	gap: 10px;
	padding: 6px 0;
	border-bottom: 1px solid #f0f0ec;
	font-size: 13px;
}

.summary-row:last-child {
	border-bottom: none;
}

.sr-label {
	color: #4a5568;
	min-width: 80px;
	flex-shrink: 0;
}

.sr-value {
	color: #0f1419;
	font-weight: 500;
	flex: 1;
}

/* ── Glassline label voice ──────────────────────────────────────── */

/* Glassline's "label" token: Geist Mono for small metadata — counters,
   tags, badges, table headers. Gives data a quiet technical register
   without touching body or heading type. */
.char-count,
.optional-tag,
.sc-label,
.badge,
.table thead th {
	font-family: 'Geist Mono', ui-monospace, 'Cascadia Mono', monospace;
}

.badge {
	font-weight: 500;
	letter-spacing: 0;
}

.table thead th {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #4a5568;
}

/* ── Season calendar view (event page) ──────────────────────────── */

#smn-event-region.smn-view-table .smn-season-cal {
	display: none;
}

#smn-event-region.smn-view-calendar .smn-event-table-view {
	display: none;
}

.smn-season-cal {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1rem;
}

.smn-season-cal__label {
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 0.55rem;
	margin-bottom: 0.75rem;
}

.smn-cal-week {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 7px 0;
}

.smn-cal-week + .smn-cal-week {
	border-top: 1px solid #f1f3f5;
}

.smn-cal-week.is-past {
	opacity: 0.5;
}

.smn-cal-week__day {
	font-family: 'Geist Mono', ui-monospace, monospace;
	font-size: 0.75rem;
	color: #4a5568;
	width: 28px;
	flex-shrink: 0;
	text-align: right;
	padding-top: 3px;
}

.smn-cal-week__content {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* One talk on one Wednesday — click jumps to its roster row. */
.smn-cal-slot {
	display: flex;
	align-items: baseline;
	gap: 8px;
	background: #f8f9fa;
	border: 1px solid #e3e7eb;
	border-radius: 6px;
	padding: 5px 9px;
	font-family: inherit;
	font-size: 12.5px;
	text-align: left;
	cursor: pointer;
	color: #0f1419;
	width: 100%;
	transition: border-color 0.15s ease;
}

.smn-cal-slot:hover {
	border-color: #283b91;
}

/* The status dot borrows the badge background classes for its color. */
.smn-cal-slot__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex-shrink: 0;
	align-self: center;
	padding: 0;
}

.smn-cal-slot__text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.smn-cal-slot__speakers {
	color: #4a5568;
	margin-left: 6px;
}

.smn-cal-free {
	font-size: 12px;
	color: #4a5568;
	text-decoration: none;
	border: 1px dashed #c9d0d7;
	border-radius: 6px;
	padding: 4px 9px;
	align-self: flex-start;
	transition: color 0.15s, border-color 0.15s;
}

.smn-cal-free:hover {
	color: #283b91;
	border-color: #283b91;
}

.smn-cal-empty {
	color: #b6bfc9;
	font-size: 12px;
}

/* ── Dark mode: custom components ───────────────────────────────── */

[data-bs-theme='dark'] .smn-sidebar {
	background: #12161c;
	border-right-color: #262d36;
}

[data-bs-theme='dark'] .smn-sidebar__top,
[data-bs-theme='dark'] .smn-sidebar__bottom {
	border-color: #262d36;
}

[data-bs-theme='dark'] .smn-sidebar__link {
	color: #cfd6de;
}

[data-bs-theme='dark'] .smn-sidebar__link:hover {
	background: #1c2430;
	color: #a9b6ef;
}

[data-bs-theme='dark'] .smn-sidebar__link.active {
	background: #283b91;
	color: #fff;
}

[data-bs-theme='dark'] .smn-sidebar__toggle {
	background: #1a1f26;
	border-color: #313a45;
	color: #98a2ad;
}

[data-bs-theme='dark'] .smn-sidebar__toggle:hover {
	background: #232a33;
	color: #e7eaee;
}

[data-bs-theme='dark'] .smn-sidebar__user {
	color: #98a2ad;
}

/* The wordmark PNG is dark-on-transparent — lift it on dark ground. */
[data-bs-theme='dark'] .smn-sidebar__brand-wordmark,
[data-bs-theme='dark'] .smn-sidebar__brand-emblem,
[data-bs-theme='dark'] .smn-logo {
	filter: invert(1) hue-rotate(180deg) brightness(1.6);
}

[data-bs-theme='dark'] .smn-form-card {
	background: #171b21;
	border-color: #2a313a;
}

[data-bs-theme='dark'] .smn-form-intro {
	background: #1a2233;
	border-color: #2c3a5e;
	color: #b6c2e8;
}

[data-bs-theme='dark'] .field-label {
	color: #e7eaee;
}

[data-bs-theme='dark'] .field-hint {
	color: #98a2ad;
}

[data-bs-theme='dark'] .smn-speaker-row {
	background: #1a1f26;
	border-color: #2a313a;
}

[data-bs-theme='dark'] .smn-speaker-row > .d-flex {
	border-bottom-color: #262d36;
}

[data-bs-theme='dark'] .smn-speaker-block {
	background: #171b21;
	border-color: #2a313a;
}

[data-bs-theme='dark'] .wed-nav,
[data-bs-theme='dark'] .wed-grid {
	background: #171b21;
	border-color: #313a45;
}

[data-bs-theme='dark'] .wed-nav-btn {
	background: #1a1f26;
	color: #98a2ad;
}

[data-bs-theme='dark'] .wed-nav-btn:hover:not(:disabled) {
	background: #232a33;
	color: #e7eaee;
}

[data-bs-theme='dark'] .wed-month-label {
	color: #e7eaee;
	border-color: #262d36;
}

[data-bs-theme='dark'] .wed-chip {
	background: #1a1f26;
	border-color: #313a45;
	color: #cfd6de;
}

[data-bs-theme='dark'] .wed-selected-display {
	background: #1a2233;
	border-color: #8b9ce8;
}

[data-bs-theme='dark'] .wed-selected-text {
	color: #e7eaee;
}

[data-bs-theme='dark'] .fixed-time-display {
	background: #1a1f26;
	border-color: #313a45;
	color: #e7eaee;
}

[data-bs-theme='dark'] .smn-event-card:hover,
[data-bs-theme='dark'] a[data-smn-list-link]:hover .smn-stat-tile {
	border-color: #8b9ce8;
}

[data-bs-theme='dark'] .smn-cal-slot {
	background: #1a1f26;
	border-color: #2a313a;
	color: #e7eaee;
}

[data-bs-theme='dark'] .smn-cal-slot:hover {
	border-color: #8b9ce8;
}

[data-bs-theme='dark'] .smn-cal-slot__speakers,
[data-bs-theme='dark'] .smn-cal-week__day {
	color: #98a2ad;
}

[data-bs-theme='dark'] .smn-cal-week + .smn-cal-week {
	border-top-color: #1d232b;
}

[data-bs-theme='dark'] .smn-season-cal__label {
	border-bottom-color: #262d36;
}

[data-bs-theme='dark'] .smn-cal-free {
	color: #98a2ad;
	border-color: #3a434e;
}

[data-bs-theme='dark'] .smn-cal-free:hover {
	color: #a9b6ef;
	border-color: #8b9ce8;
}

[data-bs-theme='dark'] .summary-card {
	background: #171b21;
	border-color: #2a313a;
}

[data-bs-theme='dark'] .smn-events-table-wrap th a[data-smn-sort]:hover {
	color: #a9b6ef;
}

/* The mode switcher is a <button> wearing the sidebar-link look — strip
   the native button chrome (background, border) it arrives with. */
.smn-sidebar__mode {
	background: none;
	border: none;
	width: 100%;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
}

/* ── Speaker autocomplete (intake form) ─────────────────────────── */

.smn-autocomplete {
	position: absolute;
	z-index: 1050;
	background: #fff;
	border: 1.5px solid #dde2e7;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
	overflow: hidden;
	min-width: 260px;
	margin-top: 4px;
}

.field-group {
	position: relative; /* Anchor for the autocomplete dropdown. */
}

.smn-autocomplete__item {
	display: block;
	width: 100%;
	background: none;
	border: none;
	border-bottom: 1px solid #f1f3f5;
	padding: 9px 13px;
	text-align: left;
	font-family: inherit;
	font-size: 13.5px;
	cursor: pointer;
	color: #0f1419;
}

.smn-autocomplete__item:last-child {
	border-bottom: none;
}

.smn-autocomplete__item:hover {
	background: #e8ecf8;
}

.smn-autocomplete__item span {
	color: #4a5568;
	font-size: 12px;
	margin-left: 6px;
}

[data-bs-theme='dark'] .smn-autocomplete {
	background: #171b21;
	border-color: #313a45;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-bs-theme='dark'] .smn-autocomplete__item {
	color: #e7eaee;
	border-bottom-color: #1d232b;
}

[data-bs-theme='dark'] .smn-autocomplete__item:hover {
	background: #1a2233;
}

[data-bs-theme='dark'] .smn-autocomplete__item span {
	color: #98a2ad;
}

/* ── Speaker details card (confirm page, post-confirmation) ─────── */

.smn-details-card {
	border: 1.5px solid #e3e7eb;
	border-radius: 10px;
	background: #f8f9fa;
	padding: 20px;
}

[data-bs-theme='dark'] .smn-details-card {
	background: #1a1f26;
	border-color: #2a313a;
}
