/* Festival overview styles for merged index page */

/* Controls with sort selector */
.controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	gap: 1rem;
}

.sort-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sort-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.sort-select {
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 0.875rem;
	background-color: var(--background-color);
	color: var(--text-primary);
	cursor: pointer;
	min-width: 150px;
}

.sort-select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.stats {
	display: flex;
	gap: 1rem;
}

.stat {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
}

/* Overview-specific components */
.overview-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Festivals list */
.festivals-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Overview-specific responsive design */
@media (max-width: 768px) {
	.controls {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.sort-container {
		justify-content: space-between;
	}

	.stats {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.stats {
		flex-direction: column;
		gap: 0.25rem;
	}
}
