/* Sidebar Menü – Frontend Styles */

.sbm-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    font-family: inherit;
}

/* Trenner / Abschnittsüberschrift */
.sbm-separator {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 16px 12px 6px;
    line-height: 1;
    user-select: none;
}

.sbm-nav .sbm-separator:first-child {
    padding-top: 4px;
}

/* Menüpunkt */
.sbm-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: hsl(0 0% 100% / 0.7) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
}

.sbm-item:hover {
    background-color: hsla(150, 80%, 25%, 0.5);
    color: hsl(0 0% 100% / 1.0) !important;
    text-decoration: none;
}

.sbm-item:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Aktiver Menüpunkt */
.sbm-item.sbm-active {
    background-color: hsla(150, 80%, 25%, 0.5);
    color: #f7e302 !important;
    font-weight: 600;
}

/* Icon */
.sbm-item svg,
.sbm-item i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke-width: 2;
}

/* Label */
.sbm-item span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
