.welcome {
    padding-top: 80px;
    padding-bottom: 40px;
}
.divWelcome {
	display: flex;
	align-items: center;
	gap: 30px;
}
section {
	padding: 30px 0;
}
h1 {
	color: #0b78c2;
	margin-bottom: 20px;
}
h2 {
	color: #0b78c2;
	margin-bottom: 15px;
}
.navbar-brand img {
	height: 40px;
}
.container table {
	width: 100%;
	border-collapse: collapse;
}
.container th, .container td {
	text-align: left;
	vertical-align: top;
}
.container th {
	background-color: #f5f5f5;
}
.oeffnungszeiten {
	display: flex;               /* aktiviert Flexbox für die Spalte */
	justify-content: center;     /* horizontal zentrieren */
	align-items: center;         /* vertikal zentrieren */
}
.cardProfile {
	display: flex;
	flex-direction: column;
	align-items: center;         /* zentriert den Inhalt innerhalb der Card */
	text-align: center;
}
.imgProfile {
	height: 200px;
	width: 200px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 10px;
}
.imgLogo {
	width: 80px;
	height: auto;
	margin-top: 4px;
}
.imgMain {
	margin: 20px;
	align-items: center;
	display: block;
	max-width: 80%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
.urgent {
    background: #d9534f;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    position: sticky; /* or fixed */
    top: 0;
    z-index: 9999;
}
.urgent:empty { 
    grid-area: urgent; 
    display: none;
}