/* Conteneur principal */
#result {
    position: absolute; 
    right: 5px; 
    top: 50px;
    height: calc(100vh - 100px); 
    width: calc(40vw - 15px);
    background-color: #ffffff; /* Fond blanc pur */
    border: 1px solid #000000; /* Bordure noire simple */
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
}

/* Scrollbar minimaliste */
#result::-webkit-scrollbar {
    width: 5px;
}
#result::-webkit-scrollbar-track {
    background: #f0f0f0;
}
#result::-webkit-scrollbar-thumb {
    background: #000000;
}

/* Carte de résultat (simple bloc) */
.Point_result {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 2px solid #000000; /* Séparation par ligne épaisse */
    margin-bottom: 10px;
}

/* Titre sans fioritures */
.Point_result h4 {
    margin: 0 0 10px 0;
    color: #000000;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Données compactes */
.Point_result p {
    margin: 2px 0;
    font-size: 0.85rem;
    color: #000000;
    display: flex;
    justify-content: space-between;
    font-family: monospace; /* Alignement parfait des chiffres */
}

/* Labels */
.Point_result p strong {
    font-weight: bold;
    color: #000000;
}

/* Suppression des effets au survol */
.Point_result:hover {
    transform: none;
    box-shadow: none;
}