
#spsb-bar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  width: 90%;
  max-width: 600px;
}
#spsb-input {
  flex: 1;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#spsb-clear {
  background: #ff4d4d;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
#spsb-clear:hover {
  background: #cc0000;
}
#spsb-results {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
}
#spsb-results a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}
#spsb-results a:hover {
  background: #f0f0f0;
}
