/*
 * This file is part of the OCP ENTO project
 * Copyright (c) 2023 DAVYCAS
 * @author Sionna Ouattara <sionnaouattara@gmail.com>
 * @author Marcel Djaman <marceldjaman@gmail.com>
 * @author Tiemtoré Yacouba<tiemyac1@gmail.com>
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

.underline-border {
    border-bottom: 2px solid #000; /* Adjust color and thickness */
    display: inline-block; /* Ensures the border only spans the text */
}
.info.legend {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

.info.legend h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
    color: #444;
}

.info.legend i {
    display: inline-block;
    width: 20px;
    height: 10px;
    margin-right: 5px;
    border: 1px solid #ccc;
}

.info.legend hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.info.legend span {
    font-size: 11px;
    color: #555;
}


.map-list.active {
    --phoenix-bg-opacity: 1;
    background-color: rgba(var(--phoenix-light-rgb), var(--phoenix-bg-opacity)) !important;
    border-radius: 6px;
    padding-top: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-left: 3px;
}

.map-list.active:hover {
    --phoenix-bg-opacity: 1;
    background-color: rgba(var(--phoenix-light-rgb), var(--phoenix-bg-opacity)) !important;
    border-radius: 6px;
    padding-top: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-left: 3px;
}

.svg-container {
    /* position: relative; Permet un positionnement absolu pour l'élément SVG */
    width: 100%;
    height: 100%; /* Ajustez selon vos besoins (ex: 500px, 100vh) */
    min-height: 600px; /* Hauteur minimale si le contenu est dynamique */
  }
  
  /* Style pour l'élément <object> */
  .svg-container #demo-tiger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; /* Supprime l'espace blanc sous l'élément */
    overflow: hidden; /* Masque les débordements */
  }
