.channel-card
{
	cursor: default;
	border: 1px solid black;
}

.channel-logo
{
	max-height: 48px;
	max-width: 120px;
	object-fit: contain;
}

.badge-custom
{
	font-size: 0.75rem;
}

.section-title
{
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
	font-size: 1.2rem;
}

.filters-section
{
	max-width: 100%;
	margin-bottom: 1rem;
	background: white;
	padding: 15px;
	border-radius: 0.5rem;
}

.card
{
	border: 1px solid black;
}

.list-group
{
	border: 1px solid black;
}

.filters-section h5
{
	margin-bottom: 0.5rem;
}

.filter-group label
{
	cursor: pointer;
}

#searchInput
{
	max-width: 300px;
	border: 1px solid black;
}

/* Flexbox pro filtry vedle sebe */
#filtersContainer
{
	display: flex;
	gap: 2rem;
	max-width: 600px;
}

#filtersContainer>.accordion-item
{
	border: 1px solid black;
	flex: 1;
}

#filtersContainer .accordion-body
{
	max-height: 150px !important;
	overflow-y: auto !important;
	padding: 8px 12px !important;
	font-size: 0.9rem;
}

/* Responzivní rozložení - pod sebou na menších obrazovkách */
@media (max-width: 600px)
{
	#filtersContainer
	{
		flex-direction: column;
		max-width: 100%;
	}
}

body
{
	/*background: #ff9e54;*/
	height: auto;
	margin: 0;
	overflow-x: hidden;
	/* Zabrání horizontálnímu scrollování, ale povolí vertikální */
}




.bg
{
	animation: slide 20s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #ffffff 50%, #69c3ff 50%);
	bottom: 0;
	left: -50%;
	opacity: .5;
	position: fixed;
	right: -50%;
	top: 0;
	z-index: -1;
}

.bg2
{
	animation-direction: alternate-reverse;
	animation-duration: 14s;
}

.bg3
{
	animation-duration: 15s;
}

.content
{
	background-color: rgba(255, 255, 255, 1);
	border-radius: .25em;
	box-shadow: 0 0 .25em rgba(0, 0, 0, .25);
	box-sizing: border-box;
	left: 50%;
	padding: 10vmin;
	position: fixed;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
}

h1
{
	font-family: monospace;
}

@keyframes slide
{
	0%
	{
		transform: translateX(-25%);
	}

	100%
	{
		transform: translateX(25%);
	}
}




.container,
.accordion,
.list-group,
#filtersContainer,
.logo-wrapper,
.logo
{
	position: relative;
	z-index: 10;
	/* obsah bude nad pozadím */
}

.logo-wrapper
{
	display: flex;
	justify-content: center;
	/* Horizontální zarovnání */
	align-items: center;
	/* Vertikální zarovnání */
	height: 64px;
	/* Výška celé obrazovky */
}

.logo
{
	width: 100%;
	height: 64px;
	background-color: #ff9e54;
}

.logo img
{
	height: 64px;
	margin: 0px;
}

.transparent-header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0);
	text-align: center;
	margin: 0;
	z-index: 1030;
}

.package-badge
{
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.package-badge:hover
{
	filter: brightness(120%);
}
