/*Formualire de la page LOGIN */

.formulaire-login {
    max-width: 600px;
    margin: 0 auto;
	padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formulaire-login h2 {
    text-align: center;
    color: #333;
}

.formulaire-login label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formulaire-login input,
.formulaire-login textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire-login input[readonly] {
	background-color: lightgray;
	color: black;
}

.formulaire-login select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire-login button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.formulaire-login button:hover {
    background-color: #0056b3;
}


.agendaChoixDate label {
    display: none;
    margin: 10px 0 5px;
    color: #555;
}

.agendaChoixDate input {
	flex: 1; /* L'input prend tout l'espace disponible */
	padding: 10px;
	margin-right: 10px; /* Espacement entre l'input et le bouton */
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.agendaChoixDate button {
	padding: 10px;
	background-color: white;
	font-family: 'Helvetica', sans-serif;
	color: black;
	border-radius: 8px;
	border: 1px solid #183B50;
}

.agendaChoixDate button:hover {
	background-color: #183B50;
	color: #ffffff; /* Correction de "colore" en "color" */
}

/* Style général existant */
.popup-content label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.popup-content input,
.popup-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content input[readonly] {
    background-color: lightgray;
    color: black;
}

.popup-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.popup-content button:hover {
    background-color: #0056b3;
}

/* Slider iOS Style */
.popup-content .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.popup-content .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.popup-content .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.popup-content .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.popup-content input:checked + .slider {
    background-color: #183B50;
}

.popup-content input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.popup-content .slider:active:before {
    width: 3vh;
}




.popup-content-narrow label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.popup-content-narrow input,
.popup-content-narrow textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-narrow input[readonly] {
	background-color: lightgray;
	color: black;
}

.popup-content-narrow select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-narrow button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.popup-content-narrow button:hover {
    background-color: #0056b3;
}

.popup-content-narrow .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.popup-content-narrow .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.popup-content-narrow .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.popup-content-narrow .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.popup-content-narrow input:checked + .slider {
    background-color: #183B50;
}

.popup-content-narrow input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.popup-content-narrow .slider:active:before {
    width: 3vh;
}


.popup-content-mid label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.popup-content-mid input,
.popup-content-mid textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-mid input[readonly] {
	background-color: lightgray;
	color: black;
}

.popup-content-mid select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-mid button {
    background-color: white;
    color: #183B50;
    padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
    border: solid #183B50 1px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
}

.popup-content-mid button:hover {
    background-color: #183B50;
	color: white;
}

.popup-content-wide label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}


.popup-content-wide input,
.popup-content-wide textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 0px;
	font-size: 2vh;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-wide input[type="radio"] {
	display: block;
    margin: 10px 0 5px;
    color: #555;
}

.popup-content-wide input[readonly] {
	background-color: lightgray;
	color: black;
}

.popup-content-wide select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-wide button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.popup-content-wide button:hover {
    background-color: #0056b3;
}

.popup-content-wide .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.popup-content-wide .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.popup-content-wide .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.popup-content-wide .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.popup-content-wide input:checked + .slider {
    background-color: #183B50;
}

.popup-content-wide input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.popup-content-wide .slider:active:before {
    width: 3vh;
}


.recherche label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
	font-size: 5vh;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.recherche input {
    width: 100%;
    padding: 10px;
	margin-top: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.consult label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
	font-size: 2.4vh;
}


.consult input,
.consult textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	font-family: 'Helvetica', sans-serif;
	font-size: 1.8vh;
}

.consult textarea {
	height: 24vh;
}

.consult input[type="radio"] {
	display: block;
    margin: 10px 0 5px;
    color: #555;
}

.consult input[readonly] {
	background-color: lightgray;
	color: black;
}

.consult select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	font-family: 'Helvetica', sans-serif;
	font-size: 1.6vh;
}

.consult button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
	font-family: 'Helvetica', sans-serif;
	font-size: 1.8vh;
}

.consult button:hover {
    background-color: #0056b3;
}

.consult .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.consult .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.consult .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.consult .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.consult input:checked + .slider {
    background-color: #183B50;
}

.consult input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.consult .slider:active:before {
    width: 3vh;
}

.popup-content-trait label {
	display: block;
	color: #555;
}


.popup-content-trait input,
.popup-content-trait textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	margin: 0;
}

.popup-content-trait input[type="radio"] {
	display: block;
    color: #555;
}

.popup-content-trait input[readonly] {
	background-color: lightgray;
	color: black;
}

.popup-content-trait select{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-trait button {
    color: black;
    padding: 10px;
	background-color: white;
    border: solid #183B50 1px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.popup-content-trait button:hover {
    background-color: #183B50;
	color: white;
}

.popup-content-trait .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.popup-content-trait .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.popup-content-trait .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.popup-content-trait .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.popup-content-trait input:checked + .slider {
    background-color: #183B50;
}

.popup-content-trait input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.popup-content-trait .slider:active:before {
    width: 3vh;
}

.popup-content-thin label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.popup-content-thin input,
.popup-content-thin textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-thin input[readonly] {
	background-color: lightgray;
	color: black;
}

.popup-content-thin select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.popup-content-thin button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.popup-content-thin button:hover {
    background-color: #0056b3;
}

.popup-content-thin .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.popup-content-thin .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.popup-content-thin .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.popup-content-thin .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.popup-content-thin input:checked + .slider {
    background-color: #183B50;
}

.popup-content-thin input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.popup-content-thin .slider:active:before {
    width: 3vh;
}

.ficheAnimalFactureContenu label {
	display: block;
	color: #555;
}


.ficheAnimalFactureContenu input,
.ficheAnimalFactureContenu textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	margin: 0;
}

.ficheAnimalFactureContenu input[type="radio"] {
	display: block;
    color: #555;
}

.ficheAnimalFactureContenu input[readonly] {
	background-color: lightgray;
	color: black;
}

.ficheAnimalFactureContenu select{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.ficheAnimalFactureContenu button {
    color: black;
    padding: 10px;
	background-color: white;
    border: solid #183B50 1px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.ficheAnimalFactureContenu button:hover {
    background-color: #183B50;
	color: white;
}

.ficheAnimalFactureContenu .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.ficheAnimalFactureContenu .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ficheAnimalFactureContenu .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.ficheAnimalFactureContenu .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.ficheAnimalFactureContenu input:checked + .slider {
    background-color: #183B50;
}

.ficheAnimalFactureContenu input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.ficheAnimalFactureContenu .slider:active:before {
    width: 3vh;
}

.lastElement label {
	display: block;
	color: #555;
}


.lastElement input,
.lastElement textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	margin: 0;
}

.lastElement input[type="radio"] {
	display: block;
    color: #555;
}

.lastElement input[readonly] {
	background-color: lightgray;
	color: black;
}

.lastElement select{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.lastElement button {
    color: black;
    padding: 10px;
	background-color: white;
    border: solid #183B50 1px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.lastElement button:hover {
    background-color: #183B50;
	color: white;
}

.lastElement .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.lastElement .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lastElement .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.lastElement .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.lastElement input:checked + .slider {
    background-color: #183B50;
}

.lastElement input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.lastElement .slider:active:before {
    width: 3vh;
}

.comFacture label {
	display: block;
	color: #555;
}


.comFacture input,
.comFacture textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	margin: 0;
}

.ficheGestion label {
	display: block;
	color: #555;
}

.ficheGestion input,
.ficheGestion textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	margin: 0;
}

.ficheGestion input[type="radio"] {
	display: block;
    color: #555;
}

.ficheGestion input[readonly] {
	background-color: lightgray;
	color: black;
}

.ficheGestion select{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.ficheGestion button {
    color: black;
    padding: 10px;
	background-color: white;
    border: solid #183B50 1px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.ficheGestion button:hover {
    background-color: #183B50;
	color: white;
}

.ficheGestion .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.ficheGestion .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ficheGestion .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.ficheGestion .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.ficheGestion input:checked + .slider {
    background-color: #183B50;
}

.ficheGestion input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.ficheGestion .slider:active:before {
    width: 3vh;
}

.ficheGestionMain input {
	width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	margin: 0;
	font-size: 1.1em;
}