.schink-soek-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  background-color: #2e2e2e;
  border-radius: 8px;
  overflow: visible;
}

#schink-soek-input {
  width: 80%;
  box-sizing: border-box;
  padding: 12px 60px 12px 12px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 8px 0 0 8px;
}

#schink-soek-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 20px;
  background: #444;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

#schink-soek-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 10000;
  margin-top: 4px;
  box-sizing: border-box;
}

.schink-soek-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #ddd;
  color: #333;
}

.schink-soek-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 4px;
}

.schink-soek-item a {
  color: #333;
  text-decoration: none;
  flex: 1;
}

.schink-soek-item:hover {
  background: #f5f5f5;
}

@media (max-width: 600px) {
  #schink-soek-input, #schink-soek-btn {
    font-size: 14px;
    padding: 10px;
  }
  .schink-soek-item img {
    width: 42px;
    height: 42px;
  }
}
