@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css");
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

header {
  background-color: #ff6f61;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

a {
  color: #18bc9c;
  text-decoration: none;
  cursor: pointer;
}
a img {
  cursor: pointer;
}

h1 {
  color: #ff6f61;
}

h3 {
  color: #ff6f61;
  border-bottom: 1px solid #ff6f61;
  padding-bottom: 12px;
}
h3:before {
  content: url(/img/icons8-bookmark-30.png);
  position: relative;
  left: -3px;
  top: 10px;
}

h4 {
  font-size: 18px;
  font-weight: normal;
}

ul li {
  margin-bottom: 8px;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-content img {
  margin-right: 10px;
  border-radius: 1em;
}

main {
  display: flex;
}

.menu {
  display: flex;
  flex-direction: column;
  background-color: #ffab7a;
  width: 200px;
  /*height: 100%;*/
  overflow-y: auto;
  padding: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  color: #ff6f61; /* Couleur vive pour le titre */
  transition: background-color 0.2s;
  border-top-right-radius: 1em;
}
.menu-item img {
  border-radius: 50%;
  margin-right: 1em;
}

.menu-item i {
  font-size: 24px;
  margin-right: 10px;
  color: #ff6f61; /* Couleur vive pour les icônes */
}

.menu-item:hover {
  background-color: #ff9966; /* Couleur vive au survol */
}

.content {
  flex: 1;
  padding: 20px;
}

footer {
  background-color: #ff6f61;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

h2 {
  font-size: 24px;
  color: #ff6f61;
}

p {
  font-size: 16px;
}

.actionToDo {
  margin-left: 24px;
}
.actionToDo:before {
  content: url(/img/icons8-edit-30.png);
  position: relative;
  left: -3px;
  top: 10px;
}

.welcomeInstall {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.welcomeInstall div {
  flex: 1 0 30%;
  margin: 5px;
  display: flex;
  justify-content: center;
}

img.illustration {
  border: 1px solid #ff6f61;
  border-radius: 8px;
  padding: 0px;
}

.pageTitle {
  display: flex;
  align-items: center;
}
.pageTitle img {
  margin-right: 1em;
}

.instructions {
  display: flex;
}
.instructions div {
  width: 50%;
  margin-bottom: 0.5em;
}
.instructions img {
  border: 1px solid #ccc;
  border-radius: 8px;
}

.star {
  background-image: url(/img/star_16x16.png);
  background-repeat: no-repeat;
  height: 16px;
  width: 2rem;
  display: inline-block;
}/*# sourceMappingURL=main.css.map */