/* //////////////// CONTAINER PRINCIPAl GERE PLACEMENT MENU ET CONTENU ////////////////// */
    .parent-container {
        display: flex;
        height: 100%;
    }
    body{
        background-size: cover;
        margin: 0;
        padding: 0;
        height: 100vh;
        font-family:sans-serif;
    }
    @media (max-width:600px) {
        
    }
/* //////////////// BANDEAU ////////////////// */
.top-bar {
    background-color: #fff;
    display: flex;
    min-height: 12vh;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    align-items: center; /* Aligne les éléments verticalement dans le conteneur flex */
}

.top-bar input,
.top-bar select {
    width: 20%;
    box-sizing: border-box;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}


.top-bar select {
    margin-left: 10px; /* Ajoute une marge à gauche pour séparer le champ input et le champ select */
    margin-right: 8px;
}

.topbar-label {
    font-family: sans-serif;
}
    .topbar-text {
        position: absolute;
        font-family: sans-serif;
        right: 20px; /* Ajustez cette valeur selon votre besoin */
    }
    .home {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .home img {
        height: 100px;
        width: 175px;
        margin-right: 8px;
        border: #1f1f1f;
        box-shadow: none; /* Réglez les valeurs appropriées */
        margin: 10px;
    }

    .search-button {
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 5px; /* Ajoute un espace entre le champ de recherche et le bouton */
    }

    .search-button img {
        height: 30px;
        width: 30px;
        border-radius: 2px;
        /* box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); Réglez les valeurs appropriées */
        transition: box-shadow 0.3s ease; /* Ajoute une transition pour une animation fluide */
    }

    .search-button:active img {
        box-shadow: inset 10px 10px 30px rgba(0, 0, 0, 0.1); /* Applique une ombre intérieure lors du clic */
    }
/* //////////////// MENU ////////////////// */
    .menu {
        background-color: #1f1f1f; /* Couleur de fond des boutons */
        width: 175px;
        min-height: 100%;
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);

    }
    .menu h2{
        font-family: sans-serif;
        color:#fff;
        text-align: center;
    }
    .menu p{
        color: #fff;
        font-family: sans-serif;
        padding-left: 10px;
    }
    .menu-button{
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%; /* Pour que le bouton occupe toute la largeur de la bande latérale */
        border: none;
        background-color: #1f1f1f; /* Couleur de fond des boutons */
        color: white;
        cursor: pointer;
    }

    .menu-button:hover{
        background-color: #353434; /* Couleur de fond des boutons */
    }
/* //////////////// CONTENU ////////////////// */
    .container {
        flex-grow: 1;
        justify-content: flex-end;
        align-items: flex-start;
        min-height:100%;
    }
    .container-text{
        justify-content: center;
        /* align-items: center; */
        min-height:800px;
        display: flex;
    }
    .text{
        font-family: sans-serif;
        font-size: xx-large;
        position: relative; /* ou position: fixed; selon vos besoins */
        padding:2px;
    }

    .text input,
    .text select {
        width: 230px;
        box-sizing: border-box;
        font-size: 14px;
        border: none;
        border-bottom: 1px solid #ccc;
        outline: none;
    }

    .text select {
        margin-left: 10px; /* Ajoute une marge à gauche pour séparer le champ input et le champ select */
        margin-right: 8px;
    }

    .text label {
        font-size: medium;
    }
    .text h1{
        font-size:40px;
        color:white;
        background-color: #006FAB;
        padding: 10px;
    }
    .text-button {
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 10px; 
        margin-top:  10px;
    }

    .text-button img {
        height: 60px;
        width:  60px;
        border-radius: 2px;
        /* box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); Réglez les valeurs appropriées */
        transition: box-shadow 0.3s ease; /* Ajoute une transition pour une animation fluide */
    }

    .container-button2 {
        display: grid;
        place-items: center; /* Centre horizontalement et verticalement */
    }
    
    .text-button2 {
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 10px; 
        margin-top:  10px;
    }
    
    .text-button2 img {
        height: 120px;
        width:  120px;
        border-radius: 2px;
        /* box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); Réglez les valeurs appropriées */
        transition: box-shadow 0.3s ease; /* Ajoute une transition pour une animation fluide */
    }
    
    .text-button3{
        text-align:center;
    }

    .text-button3 button{
        background: none;
        border: none;
        width:10%;
        cursor: pointer;
    }
    
    .text-button3 img {
        width:50%;
        transition:box-shadow 0.3s ease; /* Ajoute une transition pour une animation fluide */
    }
    
    .button-container {
        display: flex;
        justify-content: space-between;
        padding: 20px;
    }
    .button-container2 {
        display: flex;
        /* justify-content: space-between; */
        padding: 20px;
    }
/* //////////////// TABLEAU ////////////////// */
.search-input{
    width: 230px;
    box-sizing: border-box;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    margin-top:50px;
    margin-bottom:10px;
    margin-left:20px;
}
.result table {
    font-family: sans-serif;
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.result th,
.result td {
    padding: 15px;
}

.result th {
    text-align: left;
    background-color: #006FAB;
    color: #fff;
}

.result td{
    cursor:pointer;
}
.result tr:nth-child(even) {
    background-color: #E0FFFF; /* turquoise */
}

.result tr:hover {
    background-color: #b0c4de; /* darkened color for hover */
}
/* ////////////////// TABLEAU ADMIN KPAX/////////////// */
.result3 table {
    font-family: sans-serif;
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.result3 th,
.result3 td {
    padding: 15px;
    border: 1px solid black;
    text-align: center;
}

.result3 th {
    text-align: center;
    background-color: #27b2fd;
    color: #fff;
}


.result3 tr:nth-child(even) {
    background-color: #cecece; /* turquoise */
}


/* ////////////////// TABLEAU INFORMATION /////////////// */
.result2 table {
    font-family: sans-serif;
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.result2 th,
.result2 td {
    padding: 15px;
}

.result2 th {
    text-align: left;
    background-color: #006FAB;
    color: #fff;
}

.result2 tr:nth-child(even) {
    background-color: #E0FFFF; /* turquoise */
}



/* //////////////// BOUTON ////////////////// */
    .buttonPro {
        font-style: italic;
        color:white ;
        background-color:#006fab67;
        border: none;
        transition:.2s;
        cursor: pointer;
        height: auto;
        width: auto;
        padding: 8px;
        border-radius: 2px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Réglez les valeurs appropriées */

    }
    .buttonPro:hover {
        color:white ;
        background-color:#006fab;
    }

    .buttonPro2 {
        font-style: italic;
        color:white ;
        background-color:#ca0d0d88;
        border: none;
        transition:.2s;
        cursor: pointer;
        height: auto;
        width: auto;
        padding: 8px;
        border-radius: 2px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Réglez les valeurs appropriées */

    }
    .buttonPro2:hover {
        color:white ;
        background-color:#ca0d0d;
    }

    .buttonValid {
        cursor: pointer;
        transition: .2s;
        background-image: url(image/valid.png);
        background-size: cover;
    }
    .buttonValid:hover {
        background-image: url(image/voir.png);
    }

    .buttonProExc {
        font-style: italic;
        color:white ;
        background-color:#11814777;
        border: none;
        transition:.2s;
        cursor: pointer;
        height: auto;
        width: auto;
        padding: 8px;
        border-radius: 2px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Réglez les valeurs appropriées */

    }
    .buttonProExc:hover {
        color:white ;
        background-color:#118147;
    }

/* /////////////// FORM //////////////////// */
    .container-form {
        justify-content: center;
        align-items: center;
        min-height: 800px;
font-family: sans-serif;
    }

    .text-form {
        font-family: sans-serif;
        font-size: xx-large;
        position: relative;
        padding: 2px;
        background-color: #55608f;
        border-radius: 4px;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); /* Réglez les valeurs appropriées */
        color:#fff;

    }
    .text-form input,
    .text-form select {
        width: 230px;
        box-sizing: border-box;
        font-size: 14px;
        border: none;
        border-bottom: 1px solid #ccc;
        outline: none;
        margin-left: auto; /* Aligne le champ à droite */
    }

    .text-form label {
        font-size: medium;
    }
/* /////////////// FICHE //////////////////// */
.container-fiche{
    
    font-family: sans-serif;
}
.fiche table{
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.fiche td{
    border: 1px solid #ddd;

    word-wrap: break-word;
}
.fiche tr{
    width: 100%;
}
.td1{
    text-align: center;
}
.td2{
    vertical-align: top;
}
.center-column-td1 {
    margin: 0 auto;
    text-align: center;
    margin: 12px;
  }
  .center-column-td2 {
    margin: 0 auto;
    vertical-align: top;
  }

  .fiche p{
    padding:10px;
  }

/* /////////////// LOGIN //////////////////// */

  .login-form {
	width: 500px;
	margin: 0 auto;
	font-family: Tahoma, Geneva, sans-serif;
}
.login-form h1 {
	text-align: center;
	color: #0a80f7;
	font-size: 24px;
	padding: 20px 0 20px 0;
}

.login-form input[type="password"],
.login-form input[type="text"],
.login-form input[type="email"] {
	width: 100%;
	padding: 15px;
	border: 1px solid #dddddd;
	margin-bottom: 15px;
	box-sizing:border-box;
}
.login-form input[type="submit"] {
	width: 100%;
	padding: 15px;
	background-color: #0a80f7;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
}
.login-form a {
	width: 100%;
	padding: 5px;
	background-color: #cacecc;
	border: 0;
	box-sizing: border-box;
	
	color: black;
}
@media (max-width:600px) {
        .login-form{
            width: auto;
            height: auto;
        }
        .login-form input{
            width: auto;
            height: auto;
        }
}
/* INFOBULLE */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #fff;
    color: #086cbc;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 3;
    top: 100%;
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.2s;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* FIN INFOBULLE */

.puk{
    font-size:100%;
}
.pdfPuk embed{
    width: 500px;
    height: 500px;
}
@media(max-width:600px){
    .pdfPuk embed{
        width: auto;
        height: auto;
    }
}