body {
	background-color: #121212;
	color: #efefef;
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
}

.hidden {
	display: none;
}

p {
	text-align: justify;
}

img {
	border-radius: 20px;
}

.cr {
	background-color: #101010;
	border-radius: 40px;
	margin-bottom: 30px;
	padding-bottom: 40px;
	margin-top: 30px;
	padding-top: 30px;
}

h1 {
	font-size: 36px;
	font-weight: 400;
	color: #ffb928;
	margin: 20px;
}

h2 {
	margin-top: 6em;
	color: #ffb928;
}

table {
	border-radius: 10px;
	border: 1px solid #ffb928;
	border-collapse: collapse;
	padding: 5px;
	margin-left: auto;
	margin-right: auto;
}

table th {
	border: 1px solid #ffb928;
	padding: 5px;
	background: #121212;
	color: #fff;
}

table td {
	border: 1px solid #000;
	text-align: center;
	padding: 5px;
	background: #D5D5D5;
	color: #000;

}

.linux {
	text-align: center;
}

.linux img {
	width: 100%;
	height: auto;
}

.linux p {
	margin-bottom: 50px;
}

.linux figcaption {
	margin-top: 8px;
}

/*
.navbar-nav li:hover>.dropdown-menu
{
	display: block;
}
*/


#table ol {
	text-align: left;
}

.navbar {
	min-height: 57px;
}

.bg-linux {
	background-color: #202020;
}

.bg-color {
	background-color: #202020;
}

.przedmiot {
	border-radius: 20px;
	margin-bottom: 30px;
	position: relative;
	text-align: center;
	width: 100%;
	height: 200px; /* Set a fixed height for all tiles */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.przedmiot img {
	opacity: 0.2;
	border: 3px solid #ffb928;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%; /* Ensure all images fill the height of the tile */
}

.przedmiot img:hover {
	filter: blur(3px);
}

.przedmiot:hover {
	color: #ffb928;
}

/* Centered text */
.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.row a {
	color: #fff;
}

span {
	color: #ffb928;
}

.scrollup {
	width: 64px;
	height: 64px;
	text-decoration: none;
	background: url("img/up.png") no-repeat 0px 0px;
	position: fixed;
	right: 50px;
	bottom: 50px;
	display: none;
}

ol>li>a {
	color: #fff;
	text-decoration: none;

}

ol>li>a:hover {
	color: #ffb928;
	text-decoration: none;
}

ol {
	text-align: left;
	padding-left: 10%;
}

#searchInput {
    background-color: #202020;
    color: #efefef;
    border: 1px solid #ffb928;
    border-radius: 20px;
    padding: 5px 10px;
    margin-left: 10px;
}

#searchInput::placeholder {
    color: #ffb928;
}

.toc {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	margin: 20px 0;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.toc a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	padding: 5px;
	border: 1px solid #ffb928;
	border-radius: 5px;
	transition: background-color 0.3s, color 0.3s;
	width: 100%;
	text-align: center;
}

.toc a:hover {
	background-color: #ffb928;
	color: #121212;
}

