/**
 * NAVIGATION STATUS INDICATORS
 * Zeigt den Status von Seiten in der Navigation (active, draft, planned)
 */

/* Status Badge Styling - Ausgeblendet für Clean Apple-Style */
.status-badge {
    display: none; /* Komplett ausgeblendet für cleanes Megamenu */
    font-size: 0.75rem;
    margin-left: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

/* Active - Grün */
.status-active {
    color: #22c55e;
}

.nav-link-active:hover .status-active {
    opacity: 1;
}

/* Draft - Orange */
.status-draft {
    color: #f59e0b;
}

.nav-link-draft:hover .status-draft {
    opacity: 1;
}

/* Planned - Grau */
.status-planned {
    color: #9ca3af;
}

.nav-link-planned {
    opacity: 0.7;
}

.nav-link-planned:hover {
    opacity: 1;
}

.nav-link-planned:hover .status-planned {
    opacity: 1;
}

/* Hover-Effekt für Links mit Status */
.nav-dropdown a:hover .status-badge {
    opacity: 1;
    transform: scale(1.2);
}

/* Mobile Navigation Status */
.mobile-nav-content .status-badge {
    float: right;
    margin-right: 0.5rem;
}

/* Legende (optional - kann im Footer oder Sidebar angezeigt werden) */
.navigation-status-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--dim-gray);
    padding: 0.5rem;
    background: var(--seasalt);
    border-radius: 8px;
    margin-top: 1rem;
}

.navigation-status-legend span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
