@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

#map {
    height: 92%;
}

.bike-list {
    height: 92%;
    padding: 1.2rem;
    
    background-color: rgb(218, 218, 218);
    list-style: none;
}

.bike-list li {
    width: calc(100% - 2rem);
    background-color: white;
    box-shadow: #ccc 0px 1px 4px;
    border-radius: 4px;
    padding: 0.5 1rem;
}

.bike-list h2 {
    display: flex;
    justify-content: space-between;
}

footer {
    height: 8%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #6495ED;
    color: white;

    position: fixed;
    bottom: 0;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.custom-map-control-button {
    font-size: 130%;
    padding: 1rem;
    margin: 1.2rem;
    /* display: none; */
    background-color: #6495ED;
    color: white;
    border: none;
}

a {
    text-decoration: none;
    color: rgb(218, 218, 218);
}

a.hier {
    color: white;
}