#kartematerial { 
    height: 220px; 
    width: calc(100% - 10px);
    margin: 5px;
    border-radius: 8px;
    box-shadow: var(--bxshadow);
    padding:5px;
}

.adressinput{
    width: calc(100% - 10px);
    height: 30px;
    margin: 5px;
    padding: 0 0 0 5px;
    outline: none;
    border-radius: 5px;
    border: none;
    box-shadow: var(--bxshadow);
}

.adressinput:disabled {
    background: white;
    cursor: not-allowed;  
}

#karte{
    height: 220px; 
    border-radius: 8px;
}

.leaflet-popup-content {
    width: 200px;
}

.searchblk{
    width: calc(100% - 10px);
    height: 30px;
    margin: 5px;
    outline: none;
    border-radius: 5px;
    border: none;
    box-shadow: var(--bxshadow);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#nachID {
    height: 30px;
    width: 100%;
    margin: 0;
    outline: none;
    border: none;
    border-radius: 5px;
    padding-left:5px;
}

#nachID:focus +#ergebnisliste{
    height: 300px;
}


#ergebnisliste{
    width: calc(100% - 10px);
    height: 0px;
    margin: 2px 0 0 2px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: white;
    box-shadow: 0px 0px 5px black;
    transition: 0.5s;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    overflow-y: auto;
    z-index: 9999;
}

#ergebnisliste a{
    margin: 5px 0 5px 20px;
    text-decoration: none;
    color:gray;
    transition: 0.3s;
}

#ergebnisliste a:hover{
    color:coral;
    scale: 1.1;
}

#loginsuccess_page input[type=submit]{
    cursor: pointer;
    background: lightgreen;
    color: #162938;
    border: 1px solid whitesmoke;
    box-shadow: var(--bxshadow);
    margin:20px 0 20px 0;
    padding:10px;
    font-size: 1.2em;
    border-radius: 8px;
    margin: 5px auto;
}

#loginsuccess_page input[type=submit]:hover {
    background: darkgreen;
    color: white;
}