body {
	background: #e9e9e9;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

#search {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

#search input,
#episodesSelect,
#showsSelect {
	height: 48px;
	width: 240px;
	border-radius: 6px;
	border: 1px solid #ccc;
	padding: 0 10px;
}

#currentDisplaying {
	height: auto;
	width: auto;
	padding: 8px 12px;
	background: #fff;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 15px;
	color: #333;
	align-self: center;
}

#backToShowsBtn {
	height: 40px;
	width: auto;
	padding: 0 14px;
	border-radius: 6px;
	align-self: center;
}

button {
	background: #4a6edb;
	color: #fff;
	border: none;
	padding: 0 16px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
}

button:hover {
	background: #3c5cc0;
}

#root {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
	gap: 5px;
	padding: 1px;
	justify-content: center;
}

.card {
	background: #ffffff;
	border-radius: 12px;
	padding: 15px;
	border: 1px solid #ddd;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
	color: #222;
	text-align: center;
	font-size: 18px;
}

.card img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;
}

.card p {
	color: #444;
	text-align: justify;
	font-size: 14px;
}

#DataSourceWebsite {
	text-align: center;
	margin-top: 20px;
}

#DataSourceWebsite a {
	color: #1a2a8f;
}

#MessagesToUser {
	text-align: center;
}

#pageLoading {
	font-size: 26px;
	margin-top: 10px;
}