body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #121212;
    color: #e0e0e0;
}

header {
    background: #1f1f1f;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #c9a227;
}

h1 {
    margin: 0;
    color: #c9a227;
}

.filtros {
    padding: 20px;
    text-align: center;
}

select {
    padding: 10px;
    font-size: 16px;
    width: 280px;
}

#resultado {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.pocao {
    background: #1e1e1e;
    border-left: 4px solid #c9a227;
    padding: 12px;
    margin-bottom: 12px;
}
.busca-container {
  position: relative;
  width: 240px;
}

#buscaIngrediente {
  width: 100%;
  padding: 6px 8px;
}

.sugestoes {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1c1c1c;
  border: 1px solid #333;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}

.sugestoes div {
  padding: 6px 8px;
  cursor: pointer;
}

.sugestoes div:hover {
  background: #333;
}
