﻿.normal-layout {
    display: block;
    padding: 0;
}


.main--appbar {
    color: whitesmoke;
    background-color: #007A5E;
}


/* Beispiel: Bei Bildschirmbreiten unter 600px (xs) soll der Text ausgeblendet werden */
.hidden-xs {
    display: none;
}

/* Bei Bildschirmbreiten ab ...px wird der Text sichtbar */
@media (min-width: 700px) {
    .hidden-xs {
        display: inline;
    }
}

.custom-icon-button .mud-icon-button {
    border-radius: 0 !important;
}

    .custom-icon-button:hover {
        border-radius: 0 !important;
        height:48px;
    }

.bq-footer {
    background-color: #213e06;
    margin-top: auto;
}

.footer-link {
    color: floralwhite;
    font-size: 1.2em;
}

    .footer-link:hover {
        color: green;
    }

/* Mudmark header styles*/
.mud-markdown-body h1 {
    font-size: 2.4rem !important;
    font-weight: bolder;
}

.mud-markdown-body h2 {
    font-size: 2.0rem !important;
}

.mud-markdown-body h3 {
    font-size: 1.6rem !important;
}

.mud-markdown-body h4 {
    font-size: 1.4rem !important;
}

.mud-markdown-body h5 {
    font-size: 1.2rem !important;
    font-style:italic;
}

.mud-markdown-body h6 {
    font-size: 1.1rem !important;
    font-weight:bold;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* volle Breite */
    height: 100vh; /* volle Höhe */
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000; /* hoch genug, um über AppBar zu liegen */
}

.notification-popup {
    background: floralwhite;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 400px;
    text-align: center;
    z-index: 10001;
}

    



