/* searchbar.css — externe Datei
   Modernes Stepper-Layout (nummerierte Liste)
   Variablen anpassen: Farben, Größe, Abstände
*/

.searchbar-icon {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-bottom: 20px;
}

.searchbar-icon input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
}

.searchbar-icon::before {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.6;
}

.result {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.result img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.result-content {
    flex: 1;
}

mark {
    background: yellow;
}