body {
    background-color: #f5f5f5;
    color: #2b2b2b;
    font-family: Lato, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    margin:0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #2b2b2b;
}

.sb-menu-filter-box {
    border: 0px solid gray;
    border-radius: 4px;
    width: 100%;
    margin-left:8px;
}

.sb-left-filter {
    border: 1px solid gray;
    font-size: 1.2rem;
    background-color: #EEEEEE;
    padding:4px 4px 4px 4px;
    margin:16px 4px 16px 4px;
    border-radius: 4px;
}

.sb-left-select {
  display: none;
  margin-top:0px;
  padding: 8px 0px 8px 0px;
}

.sb-left-select li {
    list-style: none;
}
.sb-left-select li:hover {
    background-color:#DDDDDD;
}
.sb-row {
    display:flex;
    flex-direction: row;
}

.sb-menu-item {
    margin-bottom:8px;
    padding-bottom:8px;
}
.sb-menu-item-line {
    display: flex;
    flex-direction: row;
}

.sb-button-20-small {
    border: 1px solid #BBBBBB;
    border-radius: 2px;
    padding:2px;
    width: 26px;
    height:26px;
    display: inline-block;
    background-color: #F6F6F6;
}

.sb-button-24 {
    border: 1px solid #BBBBBB;
    border-radius: 17px;
    padding:4px;
    width: 34px;
    height:34px;
    display: block;
    background-color: #F6F6F6;
}

.sb-button-24:hover {
    border: 2px solid #FF6666;
}

.sb-center {
    text-align:center;
}
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url('../css/MaterialSymbolsOutlined-Regular.ttf') format('truetype');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* kannst du anpassen */
  display: inline-block;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}


abbr {
  text-decoration: none; /* den gestrichelten Unterstrich entfernen */
  cursor: help;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.sb-abbr-right::after{
  left: -100px;
}

abbr::after {
  content: attr(aria-label);
  position: absolute;
  left: 24px;
  top: 24px;
  transform: translateX(0px);
  transform: translateY(0px);
  background-color: #f5f5f5;
  color: #ff6666;
  padding: 4px;
  border-radius: 8px;
  border:1px solid #ff6666;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

abbr:hover::after {
  animation: showAndHide 4s ease forwards;
  animation-delay: 0.5s;
}
