body {
    	font-family: Arial, sans-serif;
    	background: #1e1e1e;
    	color: #fff;
    	margin: 0;
    	padding-top: 65px;
}
.topBlock {
    	background-color: #333;
    	padding: 10px 20px;
    	display: flex;
    	align-items: center;
    	position: fixed;
    	top: 0;
    	width: 100%;
    	box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    	border-bottom: 2px solid #444;
    	z-index: 1000;
}
.topBlock select {
    	margin-left: auto; /* 🔥 tohle je celé kouzlo */
	margin-right: 40px;
    	padding: 5px 10px;
    	font-size: 14px;
    	background: #2e2e2e;
    	color: #fff;
    	border: 1px solid #555;
    	border-radius: 4px;
}

.pageTitle {
    	font-size: 22px;
    	font-weight: bold;
}
main {
    	padding: 20px;
    	max-width: 800px;
    	margin: 0 auto;
}

section {
    	background: #2e2e2e;
    	padding: 20px;
    	margin-bottom: 20px;
    	border-radius: 8px;
    	border: 1px solid #555;
}
h2 {
    	color: #ffd700;
    	margin-top: 0;
}
input, textarea {
    	width: 97%;
    	padding: 10px;
    	margin-bottom: 10px;
    	background: #1e1e1e;
    	color: #fff;
    	border: 1px solid #555;
    	border-radius: 5px;
    	font-family: monospace;
}
button {
    	padding: 10px 20px;
    	font-size: 16px;
    	cursor: pointer;
}
.success {
    	color: #4dff4d;
    	font-weight: bold;
}
.bottomListItem {
  	background-color: #333;
  	text-align: center;
  	padding: 15px;
  	cursor: pointer;
  	position: fixed;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	transition: 0.8s;
  	z-index: 1000; /* Ujistěte se, že tlačítko bude nad blokem s filmy */
}
.bottomListItem:hover {
  	background-color: #555;
}
.bottomListText {
  	color: #fff;
  	text-decoration: none;
  	transition: color 0.3s;
}
.bottomListItem:hover .bottomListText {
  	color: #fff;
}
.langSelect {
    	position: fixed;
    	top: 10px;
    	right: 20px;
    	background: #333;
    	color: #fff;
    	border: 1px solid #555;
    	padding: 5px;
    	border-radius: 5px;
}
a {
    	color: #ffd700;
    	text-decoration: none;
}
a:hover {
    	text-decoration: underline;
}
