.bookflow-app {
	--bf-black: #1A1A1A;
	--bf-cream: #FAF7F2;
	--bf-red: #A60000;
	font-family: 'DM Sans', Arial, sans-serif;
	color: var(--bf-black);
	max-width: 760px;
	margin: 0 auto;
}

.bookflow-app * { box-sizing: border-box; }

.bf-card {
	background: var(--bf-cream);
	border: 1px solid #e7e0d4;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
}

.bf-heading {
	font-family: 'Lora', Georgia, serif;
	font-size: 1.4rem;
	margin: 0 0 16px;
}

.bf-meeting-list { display: grid; gap: 12px; }

.bf-meeting-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	border: 1px solid #ddd3c0;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color .15s ease, transform .1s ease;
}
.bf-meeting-option:hover { border-color: var(--bf-red); transform: translateY(-1px); }
.bf-meeting-option .bf-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 10px; }
.bf-meeting-title { font-weight: 700; }
.bf-meeting-meta { font-size: .85rem; color: #666; margin-top: 2px; }
.bf-meeting-price { font-family: 'DM Mono', monospace; font-weight: 700; }

.bf-grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; }
@media (max-width: 640px) { .bf-grid-2 { grid-template-columns: 1fr; } }

.bf-calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.bf-calendar-nav button { background: none; border: 1px solid #ddd3c0; border-radius: 6px; padding: 4px 10px; cursor: pointer; }
.bf-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.bf-day-label { text-align: center; font-size: .75rem; color: #888; }
.bf-day {
	text-align: center;
	padding: 8px 0;
	border-radius: 6px;
	cursor: pointer;
	font-family: 'DM Mono', monospace;
	font-size: .9rem;
}
.bf-day:hover { background: #eee2d0; }
.bf-day.bf-disabled { color: #ccc; cursor: not-allowed; }
.bf-day.bf-selected { background: var(--bf-red); color: #fff; }

.bf-slots { display: grid; gap: 8px; max-height: 320px; overflow-y: auto; }
.bf-slot-btn {
	padding: 10px 12px;
	border: 1px solid #ddd3c0;
	background: #fff;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'DM Mono', monospace;
	text-align: left;
}
.bf-slot-btn:hover, .bf-slot-btn.bf-selected { background: var(--bf-red); color: #fff; border-color: var(--bf-red); }

.bf-form label { display: block; font-size: .85rem; margin-bottom: 4px; margin-top: 14px; font-weight: 600; }
.bf-form input, .bf-form textarea, .bf-form select {
	width: 100%; padding: 10px 12px; border: 1px solid #ddd3c0; border-radius: 8px; font-family: inherit; font-size: .95rem;
}

.bf-btn {
	background: var(--bf-red);
	color: #fff;
	border: none;
	padding: 12px 22px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	font-size: .95rem;
}
.bf-btn:disabled { opacity: .5; cursor: not-allowed; }
.bf-btn-ghost { background: transparent; color: var(--bf-black); border: 1px solid #ddd3c0; }

.bf-notice { padding: 14px; border-radius: 8px; margin-bottom: 16px; font-size: .9rem; }
.bf-notice-success { background: #e6f4ea; color: #1e6b34; }
.bf-notice-error { background: #fbe7e7; color: var(--bf-red); }
.bf-notice-info { background: #eef1fb; color: #2b3a8f; }

.bf-summary-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #eee2d0; font-size: .9rem; }
.bf-loading { text-align: center; padding: 30px; color: #888; }
