@charset "utf-8";
a {
    text-decoration: none; /* Entfernt die Unterstreichung bei Links */
    color: #fff;
}

.main-nav {
    background-color: #333;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item a {
    display: block;
    padding: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-item a:hover {
    color: #f8ad9d;
    background-color: #575757;
}

.nav-item.active a {
    color: #999; 
    cursor: default; 
    pointer-events: none; 
}

.nav-item.active a:hover {
    background-color: transparent;
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #575757;
    }

    .nav-item:last-child {
        border-bottom: none;
    }
}