body {
    font-family: Calibri, Arial, verdana, sans-serif;
    background-color: #ecf6ec;
}

a {
    color: #136b18;
    transition: .2s ease;
}
a:hover{
    color: #649c68;
}

fieldset {
    max-width: 600px;
    margin: auto;
    border: thin solid #136b18;
    background-color: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 2px 2px 15px #666666;
    text-align: left;
}

fieldset input {
    width: 100%;
}

textarea{
    margin: 20px 0;
    width: 100%;
    font-family: Calibri, Arial, verdana, sans-serif;
    height: 100px;
}

fieldset button,
a.annulerBtn{
    float: right;
    color: white;
    background-color: #136b18;
    padding: 12px;
    margin: 10px;
    border: 0;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
}

input,
fieldset textarea{
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    border-bottom: thin solid #222;
    color: #222;
    font-size: 1.17em;
}

.erreur {
    color: rgb(200, 0, 0)
}

.btns-decision{
    max-width: 300px;
    margin: auto;
}
.btns-decision button{
    color: white;
    background-color: #136b18;
    padding: 12px;
    margin: 10px;
    border: 0;
    border-radius: 10px;
    font-size: 1em;
    cursor: pointer;
}
table{
    border-collapse: collapse;
    width: 100%;
}

table td, table th {
  border: 1px solid #ccc;
  padding: 8px;
}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #136b18;
  color: #ecf6ec;
}
table tr{
    background-color: white;
}
table tr:nth-child(even){
    background-color: #f2f2f2;
}
table tr:hover {
    background-color: #ddd;
}