/* CSS für das horizontale Liga-Wechsel-Menü */
.liga-menu {
    background-color: #0067b4 !important;
    padding: 0 !important;
    width: 100% !important;

    display: flex;
    justify-content: space-between;
    align-items: center;


}
@media (min-width: 768px) {
    .liga-menu {
        margin-bottom: 10px !important;
    }
}

.liga-menu-list {
    list-style: none !important;
    padding: 0 !important;
    display: flex !important;
    margin-bottom: 0px !important;
    margin-left: 20px !important;
}

/* Responsive Mobile Styling */
@media (max-width: 768px) {
    .liga-menu-list {
        justify-content: center !important;
        margin-left: 0px !important;
        width: 100% !important;
    }
}

.liga-menu-item {
}

.liga-menu-list > li {
    margin-left: 0 !important;
    padding: 0 !important;

    border-right: 2px solid white;
}

.liga-menu-list > li:first-child {
    border-left: 2px solid white;
}



.liga-menu-item a {
    display: block !important;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: bold !important;
    
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    
    background-color: #0067b4 !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
    border: none !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    text-transform: uppercase !important;

    
}

.liga-menu-item a.active {
    background-color: #fff !important;
    color: #0067b4 !important;
}

.liga-menu-item a:hover {
    background-color: #081c3e !important;
    color: #fff !important;
}
