/* Globale Stile & Header */
.logo-header {
    width: 105px;
}

.btn-outline-success {
    border-color: #356d26 !important;
    color: #356d26 !important;
}

.btn-outline-success:hover {
    background-color: #356d269c !important;
    color: #fff !important;
}

/* Lade-Overlay */
.overlay-ergebnis {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, display 0.5s ease;
}

.overlay-ergebnis.active {
    display: block;
    opacity: 1;
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.img-waiting {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.overlay-ergebnis.active .img-waiting {
    opacity: 1;
}

/* Ansichten (Card/Table) */
.container-card, .container-table {
    display: none;
}