.fv-calendar-app {
	max-width: 480px;
	font-family: inherit;
}

.fv-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.fv-tab {
	padding: 8px 16px;
	border: 1px solid #ccc;
	background: #f5f5f5;
	border-radius: 4px;
	cursor: pointer;
}

.fv-tab.is-active {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

.fv-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.fv-nav button {
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 4px;
	cursor: pointer;
	padding: 4px 10px;
}

.fv-month-label {
	font-weight: 600;
}

.fv-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.fv-day-head {
	text-align: center;
	font-size: 0.8em;
	font-weight: 600;
	color: #666;
	padding: 4px 0;
}

.fv-day {
	text-align: center;
	padding: 8px 0;
	border-radius: 4px;
	font-size: 0.9em;
}

.fv-day-empty {
	background: transparent;
}

.fv-day.is-available {
	background: #eef7ee;
	cursor: pointer;
}

.fv-day.is-available:hover {
	background: #d6efd6;
}

.fv-day.is-blocked {
	background: #f7e3e3;
	color: #aaa;
	text-decoration: line-through;
}

.fv-day.is-range-start,
.fv-day.is-in-range {
	background: #2271b1;
	color: #fff;
}

.fv-legend {
	display: flex;
	gap: 16px;
	margin-top: 10px;
	font-size: 0.85em;
	color: #555;
}

.fv-legend-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.fv-swatch {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 2px;
}

.fv-swatch.is-available { background: #eef7ee; border: 1px solid #c5e0c5; }
.fv-swatch.is-blocked { background: #f7e3e3; border: 1px solid #e0c5c5; }
.fv-swatch.is-in-range { background: #2271b1; }

.fv-form {
	margin-top: 20px;
	padding: 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fafafa;
}

.fv-field {
	margin-bottom: 10px;
}

.fv-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 0.9em;
}

.fv-field input,
.fv-field textarea {
	width: 100%;
	padding: 6px 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.fv-reset-range {
	border: none;
	background: none;
	color: #2271b1;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
}

.fv-submit {
	margin-top: 6px;
}

.fv-form-message {
	margin-top: 10px;
	font-size: 0.9em;
}

.fv-form-message.is-success {
	color: #1d7a34;
}

.fv-form-message.is-error {
	color: #b32d2e;
}
