#container{
  display:inline-block;
  width:60vw;
  vertical-align:top;
  margin-top: 5vh;
  margin-left: 20vw;
  background-color: white;
  padding: 10px;
  border-left: solid lightgrey 1px;
  border-right: solid lightgrey 1px;
  /* box-shadow: 4px 0px 4px lightgrey, -4px 0px 4px lightgrey;*/
}

#form_table{
  width:100%
}

th{
  width:10%;
}

td{
  width:90%;
}

td>*{
  width:100%
}

input, textarea{
  font-family:sans-serif;
  font-size: 1em;
  padding: 5px;
}

#id_tags, label[for=id_tags]{
  display: none;
}

#category_container, #selected_tags{
  display: inline-block;
  margin: 1%;
  padding: 1%;
  width: 45%;
  vertical-align:top;
  border: solid 2px #24478f;
  min-height:350px;
}

.tag,.selected_tag{
  display: inline-block;
  vertical-align:top;
  color:white;
  border-radius:10px;
  padding: 5px;
  margin:5px;
  height: 20px;
  text-align:center;
  cursor:pointer;
}

.selected_tag{
  display:none;
}

#comment_form{
  background:white;
  box-shadow: 3px 3px 3px lightgrey, -3px -3px 3px lightgrey;
  padding: 2%;
  padding-top:5px;
  border-radius: 20px;
  width:80%;
}

#id_nom{
  width:100%;
  margin-bottom:0px;
  border: none;
  border-bottom: 1px solid grey;
  font-style:italic;
}

#id_texte{
  width:100%;
  margin-top:0px;
  border:none;
  font-family:sans-serif;
  font-size: 1em;
  padding:10px
}

#form_submit, #delete_button{
  display: inline-block;
  background-color:#24478f;
  color: white;
  padding: 1%;
  margin: 1%;
  width:10%;
  border: none;
  border-radius:20px;
}

#delete_button{
  background-color:#b30000;
}


#error_div{
  border: 2px #b30000 solid;
  display: inline-block;
  padding: 10px;
  color: red;
  font-weight:bold;
}