BODY { 
  font-family:Verdana; 
  background-color:#f3f3f3; 
  color:#444;
  margin:0;
  padding:0;
}
a, a:visited { color: #3498db ; font-weight:bold; }

div#Content
{
  margin-left:20px;
  margin-right:20px;
  margin-top:20px;
}

BODY,TD {font-size:12px;}
THEAD TH { background-color: #146e20 ;color:white;font-weight:bold;}
TFOOT TD { background-color:#CCC; font-weight:bold;}

div#FormConnexion {
    margin:auto;
    max-width:400px;
    border: 1px solid #444;
}

#FormConnexion h1 {
    text-align: center;
    background-color: #444;
    color: #fff;
    margin-top: 0;
    font-size:16px;
    padding:5px;
}

#FormConnexion #ContentConnexion {
    padding:20px;
    text-align: center;
}

#ContentConnexion label {
    padding-bottom: 10px;
}


/* BANDEAU LATERAL */


/** BANDEAU DROITE **/
#BandRight {
  position: fixed;
  top: 0;
  right: 0;
  width: 20em;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}

#BandRight-input {
  display: none;
}

#BandRight-bloc {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-left: 1px solid #ccc;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  pointer-events: auto;
}

#BandRight-input:checked ~ #BandRight-bloc {
  transform: translateX(0);
}

/* Label icône burger */
#BandRight-icon {
  position: absolute;
  top: 15em;
  right: 100%;
  width: 3em;
  height: 5em;
  background: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: .5em 0 0 .5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#BandRight-icon .icon {
  font-size: 1.5em;
  color: #888;
}

/* Label flèche */
#BandRight-arrow {
  position: absolute;
  top: 11em;
  right: 100%;
  width: 3em;
  height: 3em;
  background: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: .5em 0 0 .5em;
  cursor: pointer;
}

#BandRight-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  border: .5em solid currentColor;
  border-width: .5em .5em 0 0;
  transform: translate(-50%, -50%) rotate(-135deg);
  transition: transform 0.5s ease;
  color: #888;
}

#BandRight-input:checked ~ #BandRight-bloc #BandRight-arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#BandRight-content {
  padding: 1em;
  overflow-y: auto;
  height: 100%;
}

/** BANDEAU GAUCHE **/
#BandLeft {
  z-index: 9999;                  /* pour être au dessus des autres éléments */
  position: fixed;                /* ne suit pas le scroll de la page et sert de réfèrent */
  top: 0;                         /* position en haut */
  left: 0;                        /* à gauche */
  width: 20em;                    /* valeur de largeur pour tout le contenu */
  min-height: 100vh;              /* occupe toute la hauteur du viewport */
  transform: translateX(-100%);   /* on déplace à gauche pour ne pas interférer avec le document */
}
#BandLeft-input {
  position: absolute;           /* pour sortir l'élément du flux */
  left: -999em;                 /* position hors de la fenêtre */
}
#BandLeft-bloc {
  /*-- positions et dimensions --*/
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  /*-- visuel --*/
  border-right: 1px solid #CCC;
  background: #FFF;
  transition: transform .5s;    /* pour animation du panneau */
}
#BandLeft-label {
  /*-- positions et dimensions --*/
  z-index: 1;                   /* on le met au dessus */
  position: absolute;           /* pour sortir l'élément du flux, il va bouger */
  top: 5em;                    /* on décolle légèrement du haut */
  left: 100%;                   /* alignement sur le bord droit du parent */
  width: 3em;                   /* dimensions respectables */
  height: 5em;
  /*-- visuel --*/
  border: 1px solid #CCC;
  border-width: 1px 1px 1px 0;
  border-radius: 0 .5em .5em 0;
  font-size: inherit;
  background: #FFF;
  transition: all .5s;          /* pour animation éventuelle */
  cursor: pointer;
}
#BandLeft-content {
  padding: .5em;                /* on décolle le contenu du bord */
  overflow: auto;               /* rien ne doit déborder */
  max-height: 100%;             /* pas plus haut que son parent */
  box-sizing: border-box;       /* modèle de boîte, plus simple à gérer */
}
#BandLeft-input:checked ~ #BandLeft-bloc {
  transform: translateX(100%);  /* translation vers la droite de 100% */
}
#BandLeft-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: .5em solid currentColor;
  border-width: .5em .5em 0 0;
  color: #888;
  transition: all .5s;
  transform: translate(-50%, -50%) rotate(45deg);
}
#BandLeft-input:checked ~ #BandLeft-bloc #BandLeft-label:before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* Label icône burger */
#BandLeft-icon {
  position: absolute;
  top: 15em;
  right: 100%;
  width: 3em;
  height: 5em;
  background: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: .5em 0 0 .5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#BandLeft-icon .icon {
  font-size: 1.5em;
  color: #888;
}

/* Label flèche */
#BandLeft-arrow {
  position: absolute;
  top: 11em;
  right: 100%;
  width: 3em;
  height: 3em;
  background: #fff;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: .5em 0 0 .5em;
  cursor: pointer;
}

#BandLeft-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  border: .5em solid currentColor;
  border-width: .5em .5em 0 0;
  transform: translate(-50%, -50%) rotate(-135deg);
  transition: transform 0.5s ease;
  color: #888;
}

#BandLeft-input:checked ~ #BandLeft-bloc #BandLeft-arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#BandLeft-content ul, #BandLeft-content ol, #BandRight-content ul, #BandRight-content ol {
  margin:0;
  padding:10px;
}


/*
**
** OVERLAY
**
*/
#overlay, .overlay 
{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    /*cursor: pointer;*/
}
#divOverlay
{
	position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background-color: white;
    z-index: 1000;
	width:600px;
	height:400px;
	padding:10px;
}

#OverlayClose {
	overflow: hidden;
	position: relative;
	border: none;
	padding: 0;
	width: 2em; height: 2em;
	border-radius: 50%;
	background: transparent;
	color: #1da1f2;
	font: inherit;
	text-indent: 100%;
	cursor: pointer;
	
	&:focus {
		outline: solid 0 transparent;
		box-shadow: 0 0 0 2px #8ed0f9
	}
	
	&:hover {
		background: rgba(29, 161, 142, .1)
	}
	
	&:before, &:after {
		position: absolute;
		top: 15%; left: calc(50% - .0625em);
		width: .125em; height: 70%;
		border-radius: .125em;
		transform: rotate(45deg);
		background: currentcolor;
		content: ''
	}
	
	&:after { transform: rotate(-45deg); }
}

/** ** BOUTONS ** **/

a.Bouton { text-decoration: none; font-weight: normal; color:#fff; }
.Bouton
{
  color:#fff;
  background-color: #007bff;
  border: 1px solid #007bff;
  border-radius: 0.25rem;
  padding:0.5rem 1rem;
  margin-left: 0.5rem;
  margin-right:0.5rem;
  margin-bottom: 0.5rem;
  cursor:pointer;
  display:inline-block;
}


.Mini
{
    padding: 0.25rem 0.5rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.Retour,
.Jaune
{
    color: #000;
    background-color: #FFC300;
    border: 1px solid #FFC300;
}

.Enregistrer,
.Vert
{
    color: #000;
    background-color: #2ecc71;
    border: 1px solid #2ecc71;
}

.Ajouter,
.Violet
{
    color: #FFF;
    background-color: #a569bd;
    border: 1px solid #a569bd;
}



#feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4a6cf7;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform .2s;
  z-index: 9999;
}

#feedback-btn:hover {
  transform: scale(1.1);
}

#feedback-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 260px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
}

#feedback-panel textarea {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  resize: vertical;
}

#fb-send {
  width: 100%;
  background: #4a6cf7;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
}
