.apedoc-city-start {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: var(--apedoc-city-pad-d, 32px);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--apedoc-city-radius, 24px);
	background: var(--apedoc-city-bg, rgba(186, 162, 76, 0.9));
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
}

.apedoc-city-start,
.apedoc-city-start * {
	box-sizing: border-box;
}

.apedoc-city-start__label {
	display: block;
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--apedoc-city-label, #ffffff);
}

.apedoc-city-start__row {
	display: flex;
	gap: 0.65rem;
	align-items: center;
}

.apedoc-city-start__select {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 60px;
	padding: 0 2.5rem 0 1rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.96);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23151515' d='M1.4 0 6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 12px 8px;
	color: #151515;
	font-size: 1rem;
	line-height: 1.3;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.apedoc-city-start__select:hover {
	border-color: rgba(21, 21, 21, 0.45);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.apedoc-city-start__select:focus,
.apedoc-city-start__select:focus-visible {
	outline: none;
	border-color: #151515;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28), 0 0 0 6px rgba(186, 162, 76, 0.3);
}

.apedoc-city-start__button {
	flex: 0 0 auto;
	min-height: 60px;
	padding: 0 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	background: var(--apedoc-city-btn-bg, #151515);
	color: var(--apedoc-city-btn-text, #fff);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.apedoc-city-start__button:hover:not(:disabled) {
	background: #2a2a2a;
	border-color: #2a2a2a;
}

.apedoc-city-start__button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

@media (max-width: 767px) {
	.apedoc-city-start {
		width: 100%;
		padding: var(--apedoc-city-pad-m, 22px);
	}

	.apedoc-city-start__row {
		flex-direction: column;
		align-items: stretch;
	}

	.apedoc-city-start__button {
		width: 100%;
	}
}

/* Nasconde l’ingresso città quando è visibile la card “Riprendi configurazione”. */
body.apedoc-has-resume .apedoc-city-start {
	display: none !important;
}
