/* Basis-Stile */
html, body { height: 98%; margin: 0; display: flex; 
    flex-direction: column;
}
.footer { height: 40px; width: 100%;
}
.footer-divider { height: 1px; background-color: #ddd;
}
.main-content { flex: 1; overflow-y: auto; padding: 0.5rem;
}
.center-div { display: flex; justify-content: center;
}
.navbar-nav .nav-item { margin-right: 5vw;
}
.custom-card-height { height: 75px; /* oder eine andere gewünschte 
    Höhe */
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active { 
    background-color: #dbdbdb; color: white;
}
.nav-link { color: #555;
}
.button-group { display: flex; flex-direction: column; align-items: 
    center; justify-content: flex-end; margin-top: 10px;
}
@media (min-width: 768px) { .button-group { flex-direction: row; 
        justify-content: flex-end;
    }
    .button-group a { margin-left: 10px;
    }
}
.select2-container--open { z-index: 999999 !important;
}
.pac-container { z-index: 10000;
}
/* Responsive Stile für das Menü */ .navbar-toggler { border: none; 
    padding: 0.5rem 1rem;
}
.navbar-toggler-icon { font-size: 1.5rem;
}
@media (min-width: 768px) { .navbar-nav .nav-item { margin-right: 
        1rem;
    }
}
@media (max-width: 767px) { .navbar { flex-direction: column; 
        align-items: flex-start;
    }
    .navbar-nav { width: 100%;
    }
    .nav-item { margin: 0.5rem 0; padding-bottom: 0.75rem; /* 
        Vergrößerter Abstand zwischen den Menüpunkten */
    }
    .nav-link { padding: 0.5rem 1rem; width: 100%; text-align: left;
    }
    .navbar-brand { margin-bottom: 1rem;
    }
    .navbar-collapse { width: 100%;
    }
}
/* Responsive Stile für den Footer */ @media (max-width: 767px) { 
    .footer {
        height: 30px; padding: 0.5rem 1rem;
    }
}
.custom-select option {
    color: #626262; /* hellgrau */
}
@media (max-width: 767px) {
    .navbar {
        align-items: center; /* Zentriert die Items vertikal, wenn flex-direction: column */
    }
    .navbar-brand {
        margin-top: auto;
        margin-bottom: auto;
    }
}