.leftnav {
    width: 200px;
    background: #14141c;
    border-right: 1px solid #2a2a35;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.nav-item {
    padding: 15px;
    text-decoration: none;
    color: #ccc;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nav-item:hover {
    background: #1d1d2a;
}

.nav-item.active {
    background: #2a2a35;
    color: #c9a227;
}

.nav-item.locked {
    color: #686875;
    cursor: not-allowed;
    background: #101017;
    opacity: 0.72;
}

.nav-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #c9a227;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
