body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #333;
}

h2 {
    text-align: center;
    margin: 15px 0 5px 0;
    color: #0078d7;
}

p {
    text-align: center;
    margin: 5px 0 15px 0;
    font-size: 16px;
}

#trackingStatus {
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 6px;
    background: #eee;
}

#controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

button, select {
    background: #0078d7;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

button:hover {
    background: #005fa3;
}

button:active {
    background: #004a82;
}

#map {
    height: 80vh;
    width: 100%;
    margin-top: 10px;
    border-top: 2px solid #0078d7;
}


/* 🎯 Style pour les points bleus déplaçables */
.custom-blue-marker {
    width: 14px;
    height: 14px;
    background: blue;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    cursor: grab;
}

/* Style pour le marqueur rouge (position actuelle) */
.custom-red-marker {
    width: 14px;
    height: 14px;
    background: red;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

/* Style pour l’input color */
input[type="color"] {
    width: 40px;
    height: 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

#mainControls, #advancedControls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
