*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    height : 100vh;
    display : flex;
    flex-direction : column;
    justify-content : space-between;
}

nav {
  background-color: #333;
  overflow: hidden;
  /* padding: 5px; */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
}

nav ul li p,
nav ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  margin: 0;
}

nav ul li a:hover {
  background-color: #111;
}

nav .user {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0 16px;
  border-right: 1px solid white;
}

nav .user img {
  max-height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.hidden {
  display: none;
}

nav ul li:last-child {
  float: right;
  margin-right: 10px;
}

.blog {
  text-align: center;
  padding: 20px;
}

.billet-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.billet {
  display: flex;
  flex-direction: column;
  margin: 10px;
  padding: 10px;
  border-radius: 15px;
  width: 600px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

.title-billet {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

.content-spe {
  margin: 0;
  margin-bottom: 10px;
  color: #898989;
}

.classic-button{
  width: fit-content;
  margin: auto;
  margin-bottom: 10px;
  padding: 10px 20px;
  background-color: #2015e9;
  border-radius: 25px;
  border: none;
  display: block;
  color: white;
}

.classic-button a {
  color: white;
  text-decoration: none;
}

.classic-button:hover {
  background-color: #1a13c6;
}

.small-button {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  background-color: #2015e9;
  border-radius: 15px;
  border: none;
  display: block;
  color: white;
}

div.comment {
  margin-bottom: 10px;
}

.billet-form h2{
  margin: 0;
  margin-bottom: 20px;
}

.billet-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background-color: #f9f9f9;
  margin-top: 50px;
  margin-bottom: 20px;
}

.billet-form .form-group {
  margin-bottom: 15px;
}

.billet-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.billet-form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.billet-form .form-control:focus {
  border-color: #007bff;
  outline: none;
}

.list-table {
  margin-top: 20px;
  margin-bottom: 20px;
}

.edit-del {
  text-align: right;
}

.edit-del a {
  margin-right: 10px;
  text-decoration: none;
  color: #2015e9;
}

.edit-del a:hover {
  color: #1c1a52;
}

.comment-content {
  margin-bottom: 10px;
}

.form-group-inline {
  display: flex;
  align-items: center;
}

.form-group-inline input[type="checkbox"] {
  margin-right: 10px;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
  position : relative;
  width : 100%;
  bottom : 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}