
 
 
 .blocker{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1280;
  background-color:rgba(255, 255, 255, 0.5);
 }

 .popUp{
  position: relative;
  background-color: gray;
  top:5%;
  left:5%;
  width:90%;
  height:90%;
  overflow-y: scroll;
 }

 .popUp .titlePopUp{
  width:100%;
  height:40px;
  text-align: center;
  font-size: xx-large;
  padding-top: 20px;
  background-color: blue;
 }

 .popUp .link{
  position: absolute;
  top:5px;left:5px;
  width: 50px;height: 50px;
  background-color: lightblue;
 }

   /*******************************************/

 .listing{
      margin:0;
      padding:0;
    max-height: calc( 100vh - 85px );;
      overflow-x: hidden;
    overflow-y: scroll;
  }

  /* Liste pièces (gestionnaire) : colonne No ≈ 12 chiffres, sans défilement dans la cellule */
  .listing.listing-part {
    overflow-x: auto;
    width: 100%;
    table-layout: auto;
  }

  .listing.listing-part .texteTitle[data-col="No"],
  .listing.listing-part .texte[data-col="No"] {
    box-sizing: content-box;
    width: 12ch;
    min-width: 12ch;
    max-width: 12ch;
    overflow-x: hidden;
    text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    text-align: left;
    padding-left: 6px;
    padding-right: 6px;
  }

  /*******************************************/

  .listing .texte{
    text-align:center;
    padding : 10px;
    border: solid 1px;
    border-color:green;
  }

  .listing .texteTitle{
    background-color: lightblue;
    text-align:center;
    border-radius:5px;
    padding : 10px;
    border: solid 1px;
    border-color:black;
    
  }

  .listing .entete{
    position: sticky; top: 0;
  }

  .listing .row{
    background-color: white;
    border-radius:5px;
 
  }

  .listing tr.row-overdue{
    background-color: #ffcdd2;
  }

  .listing .link{
    width: 50px;height: 50px;
    background-color: lightblue;
  }

  .listing  .linkCorner{
    width: 50px;height: 50px;
    background-color: gray;
  }

  .listing .selected{
    background-color: lightgray;
  }