/* Fuse Breakouts — speaker claim page.
   Deliberately restrained: this drops into an existing theme, so it inherits
   the page font and sets only what it must. */

.fbo-claim {
	max-width: 720px;
	margin: 0 auto;
	--fbo-accent: #16204e;
	--fbo-border: #d7dae3;
	--fbo-muted: #6b7280;
}

.fbo-greeting {
	font-size: 1.6rem;
	margin: 0 0 .25em;
}

.fbo-heading {
	font-size: 1.2rem;
	margin: 1.5em 0 .25em;
}

.fbo-sub,
.fbo-intro {
	color: var(--fbo-muted);
	margin: 0 0 1.25em;
}

.fbo-note {
	color: var(--fbo-muted);
	font-size: .875rem;
	margin: 1em 0 0;
}

/* The only way to a different time, so it reads as body copy rather than a
   dismissible footnote. */
.fbo-contact {
	margin: 1.25rem 0 0;
	font-size: .9375rem;
}

/* ---- Slot cards ---- */

.fbo-slots {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: .75rem;
	margin: 1rem 0;
}

.fbo-slot {
	border: 2px solid var(--fbo-border);
	border-radius: 10px;
	padding: 1rem;
	cursor: pointer;
	transition: border-color .12s ease, background-color .12s ease;
}

.fbo-slot:hover:not(.fbo-slot--full) {
	border-color: var(--fbo-accent);
}

.fbo-slot.is-selected {
	border-color: var(--fbo-accent);
	background: rgba(22, 32, 78, .05);
}

.fbo-slot--full {
	cursor: not-allowed;
	opacity: .5;
}

.fbo-slot--reserved {
	cursor: default;
	border-color: var(--fbo-accent);
}

.fbo-slot__session {
	font-size: .8rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--fbo-muted);
}

.fbo-slot__time {
	font-size: 1.15rem;
	font-weight: 700;
	margin: .15em 0;
}

.fbo-slot__spots,
.fbo-slot__room {
	font-size: .875rem;
	color: var(--fbo-muted);
}

/* ---- Identify ----
   Above the time cards and the full width of them: choosing a time and
   saying who you are are one action, not two screens. No max-width — it
   should line up with the edges of the card grid below it. */

.fbo-identify {
	margin: 1rem 0 1.75rem;
}

.fbo-identify .fbo-label {
	margin-bottom: 0;
}

/* ---- Session details ---- */

.fbo-details {
	margin: 1.5rem 0;
}

.fbo-label {
	display: block;
	margin-bottom: 1rem;
	font-size: .9rem;
	font-weight: 600;
}

.fbo-input {
	display: block;
	width: 100%;
	margin-top: .35em;
	padding: .6em .7em;
	border: 1px solid var(--fbo-border);
	border-radius: 6px;
	font: inherit;
	font-weight: 400;
}

.fbo-input:focus {
	outline: 2px solid var(--fbo-accent);
	outline-offset: 1px;
}

/* ---- Buttons ---- */

.fbo-button {
	display: inline-block;
	padding: .7em 1.4em;
	border: 0;
	border-radius: 6px;
	background: var(--fbo-accent);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.fbo-button[disabled] {
	opacity: .45;
	cursor: not-allowed;
}

.fbo-button.is-busy {
	opacity: .7;
}

.fbo-link {
	display: inline-block;
	margin-top: 1rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--fbo-accent);
	font: inherit;
	text-decoration: underline;
	cursor: pointer;
}

/* Secondary to "Need a different time?" — an escape hatch, not an action. */
.fbo-link--muted {
	color: var(--fbo-muted);
	font-size: .875rem;
	margin-left: 1rem;
}

/* ---- Confirmation ---- */

.fbo-confirmed {
	border: 2px solid var(--fbo-accent);
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
}

.fbo-confirmed__badge {
	font-size: .8rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fbo-accent);
	font-weight: 700;
}

.fbo-confirmed__session {
	margin-top: .5em;
	color: var(--fbo-muted);
}

.fbo-confirmed__time {
	font-size: 1.75rem;
	font-weight: 700;
	margin: .1em 0;
}

.fbo-confirmed__room {
	font-size: 1.1rem;
}

/* ---- Notices ---- */

.fbo-notice {
	padding: .75em 1em;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.fbo-notice--error {
	background: #fdecea;
	color: #8a1c13;
}

.fbo-notice--success {
	background: #e8f5e9;
	color: #1b5e20;
}

.fbo-error p {
	padding: 1em;
	background: #fdecea;
	color: #8a1c13;
	border-radius: 6px;
}
