#seitenslider {
  position: fixed;
  top: 20%;
  width: 200px;
  font-family: 'Verdana', sans-serif;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: right 0.3s ease, left 0.3s ease;
  z-index: 10000;
}

#seitenslider .slider-title {
  font-weight: bold;
  margin: -15px -15px 10px -15px !important;
  padding: 10px 15px !important;
  border-bottom: 1px solid;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

#seitenslider a {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: 10px 0;
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
  gap: 15px;
}

#seitenslider a:hover {
  transform: translateX(5px);
}

/* Icon-Stile für Bilder */
#seitenslider .slider-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.link-text {
  flex-grow: 1;
}

.slider-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 768px) {
  #seitenslider {
    width: 180px;
  }
  
  #seitenslider a {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  #seitenslider {
    display: none !important;
  }
}