@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, hgroup, menu, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* colors */
/* typography */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #efe4d5;
  color: #2b4743;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  min-height: 100vh;
  min-height: 100dvh;
}

h1, h2, h3, h4 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  text-align: center;
  background-color: #efe4d5;
  color: #efe4d5;
  position: relative;
  z-index: 1;
}
.hero__container {
  position: relative;
  background: #2b4743;
  padding: 3.75rem;
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__subtitle {
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.hero__title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2.1875rem;
}
.hero__description {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.hero__avatar {
  position: absolute;
  top: -0.625rem;
  right: -2.1875rem;
  width: 8.125rem;
  height: 8.125rem;
  border-radius: 100%;
  overflow: hidden;
}
.hero__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__button-item {
  margin: 0.625rem 0;
}

@media screen and (min-width: 768px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
  .hero__button-item {
    margin: 0 10px;
  }
}
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  text-align: center;
  background-color: #efe4d5;
  color: #efe4d5;
  position: relative;
  margin-bottom: 1.875rem;
}
.main__container {
  position: relative;
  background: #2b4743;
  padding: 3.75rem;
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main__container-title {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 2.1875rem;
}
.main__projects {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.main__projects-item {
  background: #efe4d5;
  border-radius: 0.625rem;
  box-shadow: 0px 4px 10px rgba(104, 168, 145, 0.1);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease-in-out;
  align-items: center;
  justify-content: space-between;
  height: auto;
}
.main__projects-item:hover {
  transform: translateY(-5px);
}
.main__projects .js-home-project-title {
  font-size: 1.5625rem;
  font-weight: 600;
  margin: 0.625rem 0;
  color: #2b4743;
}
.main__projects .js-home-project-description {
  font-size: 1rem;
  color: #2b4743;
  margin-bottom: 0.9375rem;
  justify-content: start;
  text-align: start;
}
.main__projects .js-home-project-tags-container {
  color: #efe4d5;
}
.main__projects .js-home-project-tags-container {
  display: flex;
  gap: 0.3125rem;
  margin: 1.25rem 0;
  align-items: center;
  justify-content: center;
}
.main__projects .js-home-project-tags-container span {
  background: #ea638c;
  color: #efe4d5;
  font-size: 0.75rem;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .main__projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .main__projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.blog__highlighted-article {
  border: 4px solid #2b4743;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  background-color: #efe4d5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog__highlighted-article .highlighted-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog__highlighted-article .highlighted-title a {
  color: #38d6c2;
}
.blog__highlighted-article .highlighted-title a:hover {
  color: #2b4743;
}
.blog__highlighted-article .highlighted-category {
  color: #ea638c;
  padding-bottom: 0.5rem;
}
.blog__highlighted-article__highlighted-metaContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog__highlighted-article .highlighted-meta {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #2b4743;
}
.blog__highlighted-article .highlighted-date {
  font-size: 0.875rem;
  color: gray;
  display: block;
  margin-bottom: 1rem;
}
.blog__highlighted-article .highlighted__read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-weight: bold;
  color: #2b4743;
  text-decoration: none;
}
.blog__highlighted-article .highlighted__read-more-link:hover {
  color: #38d6c2;
}
.blog__highlighted-article .highlighted__read-more-link svg {
  transition: transform 0.2s ease;
}
.blog__highlighted-article .highlighted__read-more-link:hover svg {
  transform: translateX(4px);
  color: #38d6c2;
}

.blog__filters {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
.blog__filters select {
  padding: 8px;
  font-size: 1rem;
  border: 2px solid #2b4743;
  border-radius: 5px;
  color: #2b4743;
  background: transparent;
}

.blog__articles {
  display: block;
  gap: 20px;
  margin-bottom: 30px;
}

.blog__article {
  background-color: #2b4743;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(38, 40, 39, 0.1);
  border-radius: 0.625rem;
  margin-bottom: 20px;
  border: 2px solid #2b4743;
}
.blog__article .blog__article-header {
  margin-bottom: 15px;
}
.blog__article .blog__article-header .title {
  font-size: 1.6rem;
  color: #2b4743;
  text-decoration: none;
}
.blog__article .blog__article-header .category {
  font-size: 1rem;
  color: #ea638c;
}

.blog__article-meta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog__article-meta-container .blog__article-meta {
  margin: 0;
  flex: 1 1 auto;
  font-size: 1rem;
  color: #efe4d5;
  width: 80%;
}
.blog__article-meta-container .read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-weight: bold;
  color: #efe4d5;
  text-decoration: none;
}
.blog__article-meta-container .read-more-link:hover {
  color: #38d6c2;
}
.blog__article-meta-container .read-more-link svg {
  transition: transform 0.2s ease;
}
.blog__article-meta-container .read-more-link:hover svg {
  transform: translateX(4px);
  color: #38d6c2;
}

.blog__article-separator {
  height: 1px;
  background-color: #efe4d5;
  margin: 15px 0;
}

.blog__article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
}
.blog__article-footer .date, .blog__article-footer .tags {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  align-items: center;
}
.blog__article-footer .tags {
  gap: 10px;
}
.blog__article-footer .tags span {
  background-color: #ea638c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  .blog__filters {
    width: 70%;
    margin: 0 auto;
    justify-content: center;
    gap: 1.875rem;
  }
  .blog__articles {
    margin-top: 1.875rem;
  }
  .blog__article {
    padding: 25px;
  }
  .pagination a {
    font-size: 1.1rem;
    padding: 10px 20px;
  }
}
@media (min-width: 1024px) {
  .blog {
    width: 70%;
  }
  .blog__article {
    padding: 30px;
  }
  .pagination a {
    font-size: 1.2rem;
    padding: 12px 25px;
  }
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem auto;
  padding: 1.875rem 3.75rem;
  border: 2px solid #2b4743;
  border-radius: 0.625rem;
  width: 80%;
  max-width: 50rem;
}
.contact__intro {
  text-align: center;
  padding: 0.625rem;
  color: #2b4743;
}
.contact__intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: #2b4743;
}
.contact__separator {
  width: 100%;
  height: 1px;
  background-color: #38d6c2;
  margin-bottom: 0.625rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.contact__form__left, .contact__form__right {
  display: flex;
  flex-direction: column;
}
.contact__form .group {
  display: flex;
  flex-direction: column;
}
.contact__form .group label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}
.contact__form .group input,
.contact__form .group textarea,
.contact__form .group select {
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  border: 1px solid #2b4743;
  border-radius: 0.5rem;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: #2b4743;
}
.contact__form .group input:focus,
.contact__form .group textarea:focus,
.contact__form .group select:focus {
  border-color: #38d6c2;
  box-shadow: 0 0 0 3px #38d6c2;
  outline: none;
}
.contact__form .form-error {
  color: #ea638c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .contact {
    flex-direction: column;
  }
  .contact__form {
    flex-direction: row;
    gap: 3rem;
  }
  .contact__form__left, .contact__form__right {
    flex: 1;
  }
}
.footer {
  background: #2b4743;
  color: #efe4d5;
  padding: 1rem 2rem;
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    max-height: 60px;
    margin: 0 auto;
  }
}
.footer__container-logo {
  width: 3.125rem;
}
.footer .footer__list-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
  align-items: center;
}
@media (min-width: 768px) {
  .footer .footer__list-links {
    flex-direction: row;
  }
}
.footer .footer__list--item a {
  color: #efe4d5;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}
.footer .footer__list--item a:hover, .footer .footer__list--item a.active {
  color: #38d6c2;
}

body.public {
  display: block;
  grid-template-columns: unset;
}

.nav {
  background-color: #efe4d5;
  box-shadow: 0 2px 2px #d5d5d5;
  position: relative;
  z-index: 2;
}
.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem;
  margin: 0 1.25rem;
  height: 4.375rem;
}
.nav__burger {
  cursor: pointer;
}
.nav__menu {
  display: none;
  position: absolute;
  top: 4.375rem;
  left: 0;
  right: 0;
  background-color: #efe4d5;
  box-shadow: 0 2px 2px #2b4743;
  padding: 0;
}
.nav__menu.show {
  display: block;
}
.nav__menu--item {
  padding: 0.625rem 1.25rem;
  color: #2b4743;
}
.nav__menu--item:hover {
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .nav__container {
    max-width: 748px;
    margin: auto;
  }
  .nav__burger {
    display: none;
  }
  .nav__menu {
    display: initial;
    position: static;
    box-shadow: unset;
  }
  .nav__menu--item {
    display: inline-block;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    line-height: 15px;
  }
  .nav__menu--item:hover, .nav__menu--item.active {
    border-top: 3px solid #38d6c2;
    border-bottom: 3px solid #38d6c2;
    font-weight: 700;
    color: #2b4743;
  }
  .nav__menu--item.active a {
    font-weight: 700;
    color: #2b4743;
  }
}
@media screen and (min-width: 992px) {
  .nav__container {
    max-width: 972px;
  }
}
@media screen and (min-width: 1200px) {
  .nav__container {
    max-width: 1180px;
  }
}
@media screen and (min-width: 1500px) {
  .nav__container {
    max-width: 1480px;
  }
}
@media screen and (min-width: 1900px) {
  .nav__container {
    max-width: 1880px;
  }
}
.article__content {
  line-height: 1.6;
  color: #2b4743;
}
.article__content p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.article__content h1, .article__content h2, .article__content h3, .article__content h4, .article__content h5, .article__content h6 {
  font-weight: bold;
  line-height: 1.3;
  color: #38d6c2;
}
.article__content h1 {
  font-size: 2.5rem;
}
.article__content h2 {
  font-size: 2.2rem;
}
.article__content h3 {
  font-size: 1.6rem;
}
.article__content h4 {
  font-size: 1.4rem;
}
.article__content blockquote {
  border-left: 4px solid #ea638c;
  padding-left: 1rem;
  margin-left: 0;
  font-style: italic;
  color: #3e6761;
}
.article__content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  blockquote {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .article__content {
    margin: 0 auto;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  p {
    margin-bottom: 1.5rem;
  }
  blockquote {
    font-size: 1.2rem;
  }
  img {
    margin: 2rem 0;
  }
}
.article__page {
  width: 90%;
  max-width: 70%;
  margin: 2.5rem auto;
  padding: 1rem;
}
.article__page article {
  margin-bottom: 3rem;
}
.article__page article .article__publication-date {
  margin-bottom: 1rem;
}
.article__page article .article__title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.article__page article .article__category-tags {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: 1rem;
}
.article__page article .article__category-tags .article__category {
  font-size: 1.6rem;
  color: #ea638c;
  margin-bottom: 1rem;
}
.article__page article .article__category-tags .article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.article__page article .article__category-tags .article__tags span {
  background-color: #ea638c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.article__page .comment__section {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
}
.article__page .comment__section .comment__card {
  background-color: #f5f5f5;
  border: 1px solid #2b4743;
  border-radius: 5px;
  padding: 1rem;
  margin: 1rem 0;
}
.article__page .comment__section .comment__card p {
  margin-bottom: 0.5rem;
}
.article__page .comment__section .comment__card small {
  display: block;
  font-size: 0.8rem;
  color: #666;
}
.article__page .comment__section .comment__card .comment__buttons {
  display: flex;
  flex-direction: column;
}
.article__page .comment__section .comment__card .comment__buttons a,
.article__page .comment__section .comment__card .comment__buttons form {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  margin-bottom: 10px;
}
.article__page .comment__section .comment__separator {
  margin: 2rem 0;
  border: none;
  border-top: 2px dashed #ccc;
}
.article__page .comment__section h4 {
  font-size: 1.4rem;
}
.article__page .comment__section .disclaimer {
  margin-top: 1rem;
}
.article__page .comment__section .comment__form {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .article__page article .article__category-tags {
    flex-direction: row;
    justify-content: space-between;
  }
  .article__page .comment__section .comment__card .comment__buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .article__page .comment__section .comment__card .comment__buttons a,
  .article__page .comment__section .comment__card .comment__buttons form {
    width: auto;
    margin-bottom: 0;
  }
}
body.admin {
  font-family: "Montserrat", sans-serif;
  background-color: #efe4d5;
  color: #efe4d5;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: auto 1fr;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

#sidebar {
  box-sizing: border-box;
  height: 100vh;
  width: 250px;
  padding: 5px 1rem;
  background-color: #2b4743;
  border-right: 2px solid #38d6c2;
  position: sticky;
  top: 0;
  align-self: start;
  transition: 300ms ease-in-out;
  overflow: hidden;
  text-wrap: nowrap;
}

#sidebar.close {
  padding: 5px;
  width: 60px;
}

#sidebar.close a span,
#sidebar.close .logo {
  display: none;
}

#sidebar > ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

#sidebar > ul > li:nth-child(2),
#sidebar > ul > li:nth-child(3) {
  margin-top: 2rem;
}

#sidebar .login-li {
  margin-top: 5rem;
}

#sidebar > ul > li {
  height: 50px;
  display: flex;
  align-items: center;
}

#sidebar ul li.active a {
  color: #efe4d5;
  border-top: 2px solid #38d6c2;
  border-bottom: 2px solid #38d6c2;
  border-radius: 0px;
}

#sidebar a {
  height: 100%;
  width: 100%;
  border-radius: 0.5em;
  text-decoration: none;
  padding: 0 1em;
  color: #efe4d5;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

#sidebar svg {
  flex-shrink: 0;
}

#sidebar a span {
  flex-grow: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sidebar a:hover {
  background-color: #253d3a;
}

#toggle-btn {
  margin-left: auto;
  padding: 1em;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  background-color: #2b4743;
}
#toggle-btn svg {
  transition: transform 150ms ease;
}

#toggle-btn.rotate svg {
  transform: rotate(180deg);
}

#toggle-btn:hover {
  background-color: #38d6c2;
}

main {
  color: #2b4743;
}

@media (max-width: 650px) {
  body {
    grid-template-columns: 1fr;
  }
  main {
    padding: 2em 1em 60px 1em;
  }
  .container {
    border: none;
    padding: 0;
  }
  #sidebar {
    height: 60px;
    overflow: hidden;
    width: 100%;
    position: fixed;
    border-top: 1px solid #38d6c2;
    padding: 0;
    top: unset;
    bottom: 0;
  }
  #sidebar > ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    justify-items: start;
    align-items: center;
    overflow-y: hidden;
    height: 60px;
    margin: 0;
  }
  #sidebar ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
  }
  #sidebar ul li:first-child {
    display: none;
  }
  #sidebar ul a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #sidebar ul a img {
    width: 24px;
    height: 24px;
    display: block;
  }
  #sidebar ul li span {
    display: none;
  }
  #sidebar #toggle-btn {
    display: none;
  }
}
.dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-dashboard-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.dashboard-section {
  margin-bottom: 2rem;
}
.dashboard-section h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.stat-widget {
  background-color: rgba(56, 214, 194, 0.5);
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2b4743;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #6c757d;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-table th, .dashboard-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}
.dashboard-table th {
  background-color: #2b4743;
  color: #efe4d5;
}
.dashboard-table tr:hover {
  background-color: #ebddca;
}
.dashboard-table tr:hover a {
  color: #2b4743;
}

/* Desktop : côte à côte */
@media (min-width: 768px) {
  .dashboard-grid {
    flex-direction: row;
    align-items: stretch;
  }
}
.button-wrapper {
  text-align: center;
}

.button, .button--delete, .button--dark-green, .button--light-green {
  background-color: transparent;
  border: solid 2px #efe4d5;
  color: #efe4d5;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  cursor: pointer;
}
.button:hover, .button--delete:hover, .button--dark-green:hover, .button--light-green:hover {
  border: solid 2px #38d6c2;
  color: #38d6c2;
}
.button--light-green {
  border: solid 2px #38d6c2;
  background-color: #38d6c2;
  color: #2b4743;
}
.button--light-green:hover {
  color: #38d6c2;
  background-color: transparent;
}
.button--dark-green {
  border: solid 2px #2b4743;
  color: #2b4743;
  background-color: transparent;
}
.button--dark-green:hover {
  background-color: #38d6c2;
  color: #2b4743;
}
.button__icon {
  width: 1.25rem;
  height: 1.25rem;
}
.button__label {
  font-weight: 400;
  font-size: 0.75;
}
.button--delete {
  border: solid 2px #ea638c;
  background-color: #ea638c;
  color: #efe4d5;
}
.button--delete:hover {
  color: #ea638c;
  background-color: transparent;
  border: solid 2px #ea638c;
}

.badge, .badge--delete, .badge--validated, .badge--pending {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  padding: 5px 10px;
}
.badge--pending {
  white-space: nowrap;
  background-color: #edc54c;
}
.badge--validated {
  background-color: #38d6c2;
}
.badge--delete {
  background-color: #ea638c;
}

h1 {
  font-size: 2.5rem;
}

.table-wrapper {
  width: 100%;
}

.table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin-top: 2rem;
  border: 1px solid #ccc;
}
.table th, .table td {
  padding: 1rem;
  text-align: center;
}
.table th {
  background: #2b4743;
  color: #efe4d5;
}
.table tr:nth-of-type(2n) {
  background: #ebddca;
}

@media (max-width: 650px) {
  th {
    display: none;
  }
  tr {
    border-bottom: 1px solid #ccc;
    display: block;
  }
  td {
    display: block;
    gap: 1rem;
    display: flex;
    align-content: left;
    align-items: center;
  }
  td:first-child {
    padding-top: 1rem;
  }
  td:last-child {
    padding-bottom: 1rem;
  }
  td::before {
    content: attr(data-cell) " : ";
    font-weight: 700;
  }
}
.form {
  max-width: 400px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #efe4d5;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form h1 {
  font-size: 2.5rem;
}
.form label {
  font-weight: 600;
  color: #2b4743;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  display: block;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #2b4743;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
  color: #2b4743;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: #38d6c2;
  outline: none;
}
.form .form--article {
  max-width: 90%;
}
@media (min-width: 768px) {
  .form {
    padding: 3rem;
    max-width: 90%;
  }
}

.page-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.card-message {
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background-color: #efe4d5;
}
.card-message .card-header {
  background-color: #2b4743;
  color: #efe4d5;
  padding: 1rem;
  font-weight: bold;
}
.card-message .card-header p {
  margin: 0;
}
.card-message .card-header strong {
  display: block;
  margin-top: 0.5rem;
}
.card-message .card-body {
  padding: 1.5rem;
}
.card-message .card-body p {
  margin-bottom: 0.75rem;
}
.card-message .card-body a {
  color: #2b4743;
  text-decoration: underline;
}
.card-message .card-body .message-content {
  background-color: #efe4d5;
  border-radius: 8px;
  padding: 1rem;
  font-style: italic;
  white-space: pre-wrap;
}

a {
  text-decoration: none;
  color: #38d6c2;
  font-weight: bold;
  cursor: pointer;
}
a:hover {
  font-weight: bold;
}

.a-nav {
  color: #2b4743;
  cursor: pointer;
}
.a-nav:hover {
  font-weight: bold;
  color: #2b4743;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkbox input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #38d6c2;
  cursor: pointer;
}
.checkbox label {
  margin: 0;
  font-size: 1rem;
  cursor: pointer;
}

.tag-checkbox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tag-checkbox .checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tag-checkbox .checkbox-item input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #38d6c2;
  cursor: pointer;
}
.tag-checkbox .checkbox-item label {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  cursor: pointer;
  display: inline;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.alert.alert-error, .alert.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #2b4743;
  padding-left: 2.5rem;
}
.alert.alert-error::before, .alert.alert-danger::before {
  content: "⚠️";
  margin-right: 0.5rem;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.alert.alert-success {
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  color: #38d6c2;
  padding-left: 2.5rem;
}
.alert.alert-success::before {
  content: "✅";
  margin-right: 0.5rem;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}/*# sourceMappingURL=main.css.map */