/*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
}*/

.search-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    margin: 20px;
}

#search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #aa0065;
    border-radius: 5px;
    box-sizing: border-box;
}
#suggestions-table{
   /* border: 1px solid #aa0065;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    width: 50%;
    min-width: 175px;
    position: relative;
    left: 23.1%;*/
   /* position: absolute;
    margin-left: 19%;
    width: 40%;
    min-width: 175px;
    box-sizing: border-box;
    z-index: 10;*/
   
}
#suggestions-table2{
  /*  border: 1px solid #aa0065;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    width: 95%;
    min-width: 175px;
    box-sizing: border-box;
    z-index: 300;*/
}
#suggestions {
    
   border: 1px solid #aa0065;
    border-top: 1px solid #aa0065;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    width: 35%;
    min-width: 175px;
    display: none;
    box-sizing: border-box;
    z-index: 10;
    left: 28%;

  
}
#suggestions2 {
    
    border: 1px solid #aa0065;
    border-top: none;
    max-height: 300px;
    /*height:50%;*/
    overflow-y: auto;
    background-color: white;
    position: absolute;
    width: 95%;
    min-width: 175px;
    display: none;
    box-sizing: border-box;
    z-index: 10;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    max-height: 60px;
    width:100%;
    border-bottom: 1px solid #cecece;
    /*display:flex;*/
}
.suggestion-image {
    height: 60px;
    width: 60px;
    padding-left: 10px;
}
.suggestion-image img {
    width: auto;
    height: 60px;
    max-height: 60px;
  /*      margin-left: auto;
    margin-right: auto;
    display: block;*/
}
.suggestion-name {
   width: 100%;
   padding-right: 10px;
}
.sugg-cikkszam{
    font-size: 12px;
}
.suggestion-item:hover {
    background-color: #aa0065;
    color: white;
}

/* Reszponzív beállítások */
@media (max-width: 600px) {
    #search {
        font-size: 14px;
        padding: 8px;
    }
    
    .suggestion-item {
        padding: 8px;
    }
}