body {
    font-family: 'Roboto', sans-serif;
    background-color: #adc7d2;
}

h1 {
    text-align: center;
    color: #ffd1b3;
}

.container {
    margin-bottom: 30px;
}

output {
    margin-right: 50px;
}

.ride-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ride {
    background-color: #ddf3d8;
    /*border: 1px solid #e3b5c2;*/
    border-radius: 5%;
    padding: 10px;
    width: 300px;
    cursor : pointer;
}

/* ride:hover {
    background-color: #e3b5c2;
} */

ride h3 {
    text-align: center;
}

ride button {
    width: 100px;
}


#map { height: 500px; }


#chart { 
    max-height: 500px;
    background-color: white;
}

.refresh_img {
    width: 20px;
}

#loading {
    width: 2rem;
    height: 2rem;
    border: 5px solid #f3f3f3;
    border-top: 6px solid #ddf3d8;
    border-radius: 100%;
    margin: auto;
    visibility: hidden;
    animation: spin 1s infinite linear;
}

#loading.display {
    visibility: visible;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}