/* Cercle vaudois de généalogie - Feuille de style petabosson */
    * {
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, Helvetica, sans-serif;
    }

    ul.a {
      list-style-type: circle;
    }
    
    table {
      width: 100%;
    }

    .button {
      background-color: darkgreen; /* Green */
      border: none;
      border-radius: 12px;
      color: white;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      padding: 10px 10px;
      font-size: 12px;
      margin: 4px 2px;
      cursor: pointer;
      float: right;
    }

    /* Style header */
    .header {
      padding: 10px;
      border-radius: 10px;
      background: #73AD21;
      width: 100%;
      height: 40px; 
      text-align: left;
      font-size: 20px;
    }
    
    /* Style individu */
    .individu {
      padding: 10px;
      text-align: left;
      font-size: 15px;
      width: 100%;
    }
    
    /* Style conjoint */
    .conjoint {
      padding: 10px;
      text-align: left;
      font-size: 15px;
      width: 100%;
    }

    /* Style console */
    .console {
      background-color: #ffffff;
      background: #eeeeee;
      float: right;
      width: 100%;
      padding: 15px;
      font-size: 14px;
    }

    /* Style acte */
    .acte {
      padding: 10px;
      text-align: left;
      font-size: 15px;
      width: 100%;
    }
  
    /* Style colonne individu */
    .column {
      background-color: #ffffff;
      background:#eee;
      float: left;
      border-radius: 15px;
      padding: 10px;
      font-size: 14px;
    }
    
    /* Colonnes de gauche et de droite */
    .column.side {
      width: 49%;
    }
    
    /* Colonne du centre (séparateur) */
    .column.middle {
      width: 2%;
      background-color: #ffffff;
      background:##ffffff;
    }
    
    /* Colonne conjoint */
    .columnc {
      background-color: #ffffff;
      background:#eee;
      float: right;
      width: 100%;
      border-radius: 15px;
      padding: 15px;
      font-size: 15px;
    }

    /* Colonne acte */
    .columna {
      background-color: #ffffff;
      background:#eee;
      float: right;
      width: 100%;
      border-radius: 15px;
      padding: 10px;
      font-size: 15px;
    }
    
    /*  */
    .action {
      background-color: #ffffff;
      background:#eee;
      float: right;
      width: 100%;
      border-radius: 15px;
      padding: 10px;
      font-size: 15px;
    }

    /* Séparateur horizontal */
    .separateurh {
      background-color: #ffffff;
      width: 100%;
      padding: 10px;
      height: 5px;
    }
    
    /* Clear floats after the columns */
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    

    /* Style info membre */
    .membre {
      text-align: center;
      font-size: 12px;
    }

    /* Style pied de page */
    .footer {
      background-color: #ffffff;
      padding: 10px;
      border-radius: 10px;
      background: #73AD21;
      width: 100%;
      height: 30px; 
      text-align: center;
      font-size: 12px;
    }
    
    /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
    @media (max-width: 600px) {
      .column {
        width: 100%;
      }
    }
    
    /* Style titre */
    #titre {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      border-collapse: collapse;
      float: right;
      font-size: 15px;
      width: 100%;
      table-layout: auto;
    }
    
    #titre td, #titre th {
      padding: 8px;
      background-color: #ddd;
    }
    
    /* Style infos */
    #infos {
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      border-collapse: collapse;
      font-size: 12px;
      width: 100%;
    }
    
    #infos td, #infos th {
      padding: 8px;
      height: 40px;
      text-align: justify; 
      text-justify: inter-word;
    }

    input[type=text], select {
      width: 100%;
      padding: 12px 10px;
      margin: 5px 0;
      box-sizing: border-box;
    }

  input[type=date] {
      width: 100%;
      padding: 12px 10px;
      margin: 5px 0;
      box-sizing: border-box;
    }

    input[type=submit] {
      width: 80;
      background-color: darkgreen; /* Green */
      color: white;
      padding: 5px 15px;
      margin: 0px;
      border: none;
      border-radius: 15px;
      cursor: pointer;
    }


    .container {
      border-radius: 15px;
      background-color: #f2f2f2;
      padding: 20px;
    }
    
    .col-20 {
      float: left;
      width: 20%;
      margin-top: 6px;
    }
    
    .col-80 {
      float: left;
      width: 80%;
      margin-top: 6px;
    }
    
.columninput {
  float: left;
  padding: 10px, 10px;
}

.left {
  width: 250px;
  margin-top: 5px;
  margin-right: 15px;
}

.right {
  width: 250px;
  margin-top: 5px;
}



    
