/* Overlay pe tot ecranul */
#ssp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

/* Cutia de căutare centrată */
#ssp-search-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Inputul */
#ssp-search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Lista de rezultate */
#ssp-results {
  margin-top: 10px;
  list-style: none;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}

/* Fiecare rezultat */
#ssp-results li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

#ssp-results li:hover {
  background-color: #f0f0f0;
}
