#plan-du-site {
  p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
  }

  span {
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  em {
    padding-left: 5px;
  }

  img {
    flex-grow: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
  }

  a,
  a:visited {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-weight: normal;
    width: 100%;
    height: 30px;
    color: var(--text-color);
    text-align: left;
    text-decoration: none;
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  a:hover {
    color: var(--nav-text-color-hover);
    background-color: var(--nav-background-color);
  }
}
