body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 20px;
        }




.generale {
            width: 1150px;          /* largeur fixe */
            margin: 10px auto;      /* centrage horizontal + espace en haut */
            padding: 20px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(24, 189, 51, 0.1);
        }



.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.logo img {
  height: 115px; /* ajuste si besoin */
}

/* menu */
.menu {
  display: flex;
  gap: 10px;
}

/* onglets */
.onglet {
  border-radius: 10px;
  border: 2px solid black;
  width: 130px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

/* liens */
.onglet a {
  display: block;
  padding: 5px 0;
  color: black;
  text-decoration: none;
}

.onglet a:hover {
  color: rgb(11, 240, 22);
}

/* droite */
.btright {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btright img {
    width: 36px;  
}


/* Conteneur formulaire */
.form-container {
    max-width: 1200px;
}

/* Ligne de formulaire */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

/* Colonne */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Largeur fixe pour petits champs */
.form-group.small {
    width: 220px;
}

/* Champ qui prend tout l’espace */
.form-group.full {
    flex: 1;
}

/* Styles des inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Labels */
.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

/* Bouton */
.form-actions {
    margin-top: 20px;
}

/* messages succes, error */

.msg-success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
}

.msg-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}







/* Annuaire Web  AW*/

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;


    padding-top: 10px;
}

.bloc-annuaire {
    display: flex;
    flex-direction: column;
    border-left: 3px solid rgb(189, 184, 184);
    padding-left: 20px;
    padding-bottom: 10px;
}

.titre-bloc {
    margin: 0 0 10px 0;
    color: black;
    font-size: 18px;
    font-weight: 600;
}

.annuaire {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 3px solid rgb(189, 184, 184);
    padding-bottom: 10px;
}

.card {
    width: 120px;
    height: 120px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

.card:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.card img {
    display: block;
    max-width: 105px;
    max-height: 105px;
    margin: 0 auto 4px auto;
    object-fit: contain;
}

.card p,
.card span,
.card h1,
.card h2,
.card h3 {
    margin: 0;
}

.lienfct a {
    color: rgb(10, 170, 31);
    text-decoration: none;
}


/* Procedures */

/* ligne dans les listes */

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ligne-procedure {
display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 8px;
  border-radius: 6px;
  box-sizing: border-box;
}



.ligne-procedure:hover {
  background-color: #f5f5f5;
  border-radius: 6px;
}

.ligne-procedure:hover .titre-procedure {
  color: #007BFF;
}


.liste-procedures {
  list-style: none;
  margin: 0;
  padding: 0;
}

.liste-procedures li {
  list-style: none;
}


.titre-procedure {
  flex: 1;
  transition: color 0.2s ease;
}

.titre-procedure a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.titre-procedure a:hover {
  text-decoration: underline;
}

.droite-procedure {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.date-procedure {

  text-align: right;
  white-space: nowrap;
  color: #666;
  font-size: 14px;
}

.actions-procedure {

  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.actions-procedure img {
  width: 20px;
  height: 20px;
}

