body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #eb7734;
    color: white;
    padding: 1rem;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #eb7734;
}
h3,h4{
  margin: 5px;
  margin-left: 0px;
}

a {
    color: #eb7734;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, textarea, button,select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background-color: #eb7734;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #eb7734;
}

.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* Spécifique aux listes */
ul.comments, ul.points, ul.reunions {
    list-style: none;
    padding: 0;
}

ul{
    list-style: "- ";
}

li.point, li.comment, li.reunion {
    margin: 10px 0;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow-wrap: break-word;
}
.details{
  margin:auto;
  border: 1px solid #ddd;
  width: auto;
  text-align: center;
  max-width: 300px;
  border-radius: 5px;
}
textarea {
  field-sizing: content;
}
.inline{
display:flex;
flex-flow: row;
}
.inline button{
  width:auto;
  margin-left : 10px;
}
.modify img, .delete img{
  height:15px;
}

button a{
  color: white;
  text-decoration: none;
}
.gray{
  color:rgba(161, 161, 161,0.8);
}
.reactions{
    display: flex;
    justify-content: left;
    align-items: center;
    list-style: none;
    padding: 0;
}
.reactions li{
    margin: 5px;
    border: #ddd solid 1px;
    border-radius: 5px;
    padding: 3px;
}
.reactions li:hover{
    background-color: #eb7734;
    color: white;
    cursor: default;
}
.reactions form{
    display: flex;
    align-items: center;
    margin: 0;
}
.reactions select{
    margin : 5px;
    padding: 5px;
    color: #eb7734;
    font-weight: bold;
    cursor: pointer;
    height: 30px;
}