.img-fluid {
	max-width: 100%;
	height: auto;
	padding: 0.25em;
}

.testimonial-img {
	background-image: url(../images/pozadi-relax.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

p {
	line-height: 1.8em;
}

li {
	line-height: 1.8em;
	list-style: none; 		/* skryje standardní tečky */
	padding-left: 0;  		/* volitelné – odstraní odsazení vlevo */
	position: relative;		/* umožní umístit ::before relativně */
	padding-left: 1.5em;	/* prostor pro ikonu vlevo */
}

li::before {
	content: "✓";			/* můžeš změnit třeba na ☑ nebo ✔ */
	position: absolute;
	left: 0;				/* umístění vlevo */
	color: #09442d;			/* libovolná barva – tady zelená */
	font-weight: bold;
}

li.bila::before {
	color: #fff;			/* libovolná barva – tady zelená */
}



table {
	width: 100%;
	border-collapse: collapse;
	font-family: Arial, sans-serif;
}

table th, table td {
	text-align: left;
	padding: 10px 8px;
}

table tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

table tbody tr:hover {
	background-color: #f1f1f1;
}

/* První buňka v každém řádku bude tučně */
table tbody td:first-child {
	font-weight: bold;
}


@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		left: auto;
		right: 0px;
    }
}

.page-header {
	background: url(../images/banner-hlavni.jpg) center center no-repeat;
	background-size: cover;
}



/* Cookies banner */
#cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 400px;
	margin: auto;
	background: #2c2c2c;
	color: #f1f1f1;
	padding: 16px 20px;
	font-size: 14px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10000;
}

#cookie-banner p {
	margin: 0;
	flex: 1;
	font-size: 13px;
}

#cookie-banner button {
	margin-left: 15px;
	background: #4CAF50;
	color: #fff;
	border: none;
	padding: 6px 12px;
	font-size: 13px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease;
}

#cookie-banner button:hover {
	background: #45a049;
}

.form-control:disabled, .form-control:read-only {
	background-color: #ffffff;
	opacity: 1;
}