.lang-switch {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: flex-end;
}
.lang-switch form {
    display: flex;
    align-items: center;
}
.lang-switch span {
    margin-right: 0.5rem;
}
body.bg-light {
    background-color: #f8f9fa !important;
}

.card.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.login-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 20px;
}

.form-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

img.logo {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: auto;
}
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
	background: linear-gradient(135deg, #e0f7fa, #ffffff);
    background-color: #f4f4f4;
    color: #333;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.user-menu {
    position: relative;
    display: inline-block;
}

.profile-icon {
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    transition: background-color 0.3s;
}

.profile-icon:hover {
    background-color: #ddd;
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

.user-dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.user-dropdown a:hover {
    background-color: #f1f1f1;
}


.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.tile {
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
}

.tile:hover {
    transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: #e9e9e9;
}

.tile i {
    display: block;
    font-size: 2.5rem;  /* Größeres Icon */
    margin-bottom: 10px;
    color: #333;
    text-align: center; /* Zentriert über dem Text */
}
a.tile {
    text-decoration: none;
    color: inherit;
}
/* Container-Abstand für mehr Luft */
.container {
    max-width: 1100px;
}

/* Infoboxen für Startseite */
.info-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

/* Hover-Effekt für Infoboxen */
.info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Titel in Infobox */
.info-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

/* Text in Infobox */
.info-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Footer Impressum-Link */
footer a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

footer a:hover {
    text-decoration: underline;
    color: #000;
}




