/* style.css */
header { height: 80px; }
#map-container { height: calc(100vh - 80px) !important; width: 100%; }

.node-obj {
    border-radius: 15px !important;
    padding: 12px 24px !important;
    background: #fff !important;
    border: 2px solid #4f46e5 !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    #map-title { max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
    .shortcuts-helper { display: none; }
}
/* --- LISIBILITÉ DES NOMS DE LIENS (MIND-ELIXIR) --- */
svg text {
    fill: #334155 !important; /* Couleur du texte */
    font-weight: 700 !important; /* Texte en gras */
    /* L'effet "Halo" blanc ultra-opaque qui masque la ligne derrière */
    text-shadow: 
        -3px -3px 0px rgba(255,255,255,0.9),
         3px -3px 0px rgba(255,255,255,0.9),
        -3px  3px 0px rgba(255,255,255,0.9),
         3px  3px 0px rgba(255,255,255,0.9),
         0px  0px 15px rgba(255,255,255,1);
}