.amadeus-fare-calendar {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 50;
	width: 327px;
	max-width: 92vw;
	background: #fff;
	border: 1px solid var(--amadeus-border, #e0e0e0);
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	padding: 12px;
	margin-top: 0;
}

.amadeus-fc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.amadeus-fc-title {
	font-weight: 700;
	color: var(--amadeus-secondary, #333);
}

.amadeus-fc-nav {
	background: var(--amadeus-primary, #ff6a00);
	color: #fff;
	border: 0;
	border-radius: 6px;
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.amadeus-fc-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}

.amadeus-fc-dow-cell {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--amadeus-muted, #888);
	padding: 4px 0;
}

.amadeus-fc-cell {
	min-height: 52px;
	border: 1px solid #f0f0f0;
	border-radius: 6px;
	padding: 4px 2px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, border-color 0.15s;
}

.amadeus-fc-cell:hover:not(.amadeus-fc-empty):not(.amadeus-fc-disabled) {
	background: #fff7f2;
	border-color: var(--amadeus-primary, #ff6a00);
}

.amadeus-fc-empty {
	border: 0;
	cursor: default;
}

.amadeus-fc-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.amadeus-fc-day {
	font-size: 13px;
	font-weight: 600;
	color: var(--amadeus-secondary, #333);
}

.amadeus-fc-price {
	font-size: 11px;
	font-weight: 700;
	color: var(--amadeus-primary, #ff6a00);
	margin-top: 2px;
	white-space: nowrap;
	line-height: 1.1;
}

.amadeus-fc-cheapest {
	background: #ecfdf3;
	border-color: #4caf50;
}

.amadeus-fc-cheapest .amadeus-fc-price {
	color: #027a48;
}

.amadeus-fc-hint {
	font-size: 11px;
	color: var(--amadeus-muted, #888);
	text-align: center;
	margin-top: 8px;
	min-height: 14px;
}

@media (max-width: 768px) {
	.amadeus-fare-calendar {
		max-width: calc(100vw - 24px);
		box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
	}
}
