/* Image accueil fixe avec effet zoom au survol */
#imgAccueil {
    height: 500px;
    width: 13%;
    position: fixed;
    top: 0;
    right: 0;
    background-image: url("../images/echop_creation.png");
    background-position: top 100px right 0;
    background-repeat: no-repeat;
    background-size: contain; /* change de 100% à contain pour meilleure gestion */
    cursor: pointer;
    text-align: center;
    font-size: 11px;
    transition: transform 0.2s ease-in-out;
}

#imgAccueil:hover {
    transform: scale(1.2);
}

/* Tableau avec bordure simple et texte petit */
.tableau {
    font-size: 11px;
    border: 1px solid black;
    border-collapse: collapse; /* si tableau HTML */
}

/* Boutons avec texte plus petit */
.bouton {
    font-size: 11px;
}

/* Style commun pour tous les boutons bordeaux */
.btn-deconnexion,
.btn-bordeaux {
    background-color: #800000; /* Bordeaux */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none; /* utile si bouton est un lien */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hover pour boutons bordeaux */
.btn-deconnexion:hover,
.btn-bordeaux:hover {
    background-color: #5a0000; /* Bordeaux foncé */
    color: white;
}

.btn-bordeaux:link,
.btn-bordeaux:visited {
  color: white;            /* Toujours blanc même après visite */
  text-decoration: none;   /* Pas de soulignement */
}

.btn-bordeaux:focus,
.btn-bordeaux:active {
  outline: none;           /* Pour enlever le contour si tu veux */
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.5); /* Ou un focus visible */
}

/* En-tête fixe */
#entete {
    position: fixed;
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background-color: #932D30;
    margin-bottom: 100px;
    z-index: 1;
}

/* Curseur fixé en haut à droite */
#curseur {
    position: fixed;
    top: 10px;
    left: 80%;
    height: 61px;
    z-index: 1;
}

/* Message succès avec transition de position */
#success {
    position: fixed;
    left: 50px;
    top: -120px;
    transition: all 0.5s ease-out;
}

/* Masque écran semi-transparent */
#masque {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-color: darkslategray;
    z-index: 10;
}

/* Fenêtre mail confirmation centrée */
#mailconfirmation {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    z-index: 20;
}

/* Contenu mail avec bordure bleue */
#contenumail {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 10px;
    border: 2px solid blue;
    border-radius: 5px;
}
