:root {
  --titlebar-height: 56px;
}
.subservices {
  display: flex;
  gap: 0.25em !important;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0;
}
.menu-item {
  display: flex;
  align-items: center;
}

/*
main {
  background-image: url('https://picsum.photos/1200');
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100dvh - var(--titlebar-height));
  background-color: rgba(0, 0, 0, 0.85);
  background-blend-mode: darken;
}
*/
.nav-wrapper {
  background-color: var(--md-sys-color-secondary-container);
  gap: 0.5em;
}

/* external items */
.externalitems-summary button {
  height: 100%;
  cursor: pointer;
  text-align: left;
  font-size: 0.8em;
  border: none;
  background: transparent;
  outline: none;
}
.externalitems-summary .dropdown-window {
  margin: 0;
  position: fixed;
  top: anchor(bottom);
  left: anchor(start);
  /*width: anchor-size(width, 100%);*/
  height: 300px;
  background: var(--md-sys-color-secondary-container);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  user-select: none;
  border: 1px solid #8888;
  border-top: none;
}
/* renderlist */
.appview-itemlist .dd-item {
  display: flex;
  align-items: center;
  gap: 0.25em;
  padding: 0.25em;
  overflow: hidden;
}
.appview-itemlist .dd-item:nth-child(odd) {
  background: #8883;
}
.appview-itemlist .dd-item:hover {
  background: #8885;
}
.appview-itemlist .dd-item img {
  height: 20px;
  width: 20px;
  background: #888;
  object-fit: cover;
}
.appview-itemlist .dd-item p {
  font-size: 0.9em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.appview-itemlist .dd-item small {
  font-size: 0.75em;
  color: #888;
}
.appview-itemlist .dd-item .select {
  cursor: pointer;
}
.appview-itemlist .dd-item .select:focus {
  outline: 1px solid red;
}
