body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#map {
    width: 100%;
    height: 80vh;  /* Modifier la hauteur de la carte pour laisser de la place pour les autres éléments */
    z-index: 0;
}

#chat, #alerts, #compass {
    position: absolute;
    z-index: 10; /* Placer les éléments au-dessus de la carte */
}

#chat {
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
}

#messages {
    max-height: 200px;
    overflow-y: auto;
}

#chat-input {
    width: 200px;
}

#alerts {
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
}

#compass {
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px;
    border-radius: 50%;
    text-align: center;
}