/* 
  Categories cascade style sheet (categories.css)

  © Copyright 2022 by J. E. Purkyně University. All rights reserved
*/
icon[type="home"]{
  background-image:url('icons/home.png');
}
/*categories panel*/
#e{
  background-color:rgb(191,191,191);
  padding:0.625em;
  border:1px solid gray;
  border-radius:4px;
}
#e>h4{
  margin:0.625em 0;
}
#e div{
  text-align:initial;
}
/*category wrapper*/
#e .b{
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
/*category*/
#e .b>a{
  margin-left:5%;
}
/*active (selected) category*/
#f{
  font-weight:bold;
}
/*category block*/
#e div:not(.b){
  margin-left:5%;
  display:flex;
  flex-direction:column;
}
/*path container*/
#g{
  display:flex;
  align-items:center;
  margin:0.5em 0.375em;
}
/*category/device name*/
#g>a, #g>p{
  margin:0 0.25em;
}
/*navigation panel category and path category hover*/
#e .b>a:hover,#g>a:hover{
  color:gray;
}