body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

#map {
    height: 80vh;
    width: 100%;
}

/* Champs de saisie */
#inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    gap: 10px;
    padding: 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
}

#inputs input {
    padding: 10px;
    width: 100%;
    max-width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#inputs button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#inputs button:hover {
    background-color: #0056b3;
}

/* Barre de sélection */
#toolbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background-color: #ffffff;
    border-top: 1px solid #ccc;
    z-index: 1000;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
}

.icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.icon span {
    font-size: 12px;
    color: #333;
}
