:root {
    --background-color: #434343;
    --bg_transparent: #3e3e3ee3;
    --text-color: #ffffff;
    --article-title_a-color: #e8b656;
    --navbar_hover-color: #faf9f5;
    --article-title_h2: #fff;
    --date: #fff;
    --comment_form: #515151;
    --input: #2d2d2d;
    --input_text: #fff;
    --cadre: #4f4f4f;
    --filter: brightness(0) invert(1);
    --footer: #373737;
    --color: #8cb8f0;
    --col_date:#f0f0f0;
    --bg_comment_form: #3e3c3c;
    --filter_bg_image: brightness(50%);
    --filter_svg_chat: invert();
    --note-toolbar: background-color: #5d5d5d;
    --note-toolbar_button: background-color: #848484;
    --lien: #b0c8ee;
}

[data-theme="light"] {
     --background-color: #fff;
    --bg_transparent: #ffffffdb;
    --text-color: #121212;
    --article-title_a-color: #121212;
    --navbar_hover-color: #121212;
    --article-title_h2: #2f2f2f;
    --date: #2f2f2f;
    --comment_form: #fafafa;
    --input: #fff;
    --input_text: #000;
    --cadre: #4f4f4f;
    --filter: initial;
    --footer: #f1f1f1;
    --col_date:#666;
    --bg_comment_form: #fff;
    --filter_bg_image: initial;
    --filter_svg_chat: initial;
    --lien: #073f97;
}

html{
    background-color:var(--background-color);
}

.content{
    color:var(--text-color);
}

* {
  font-family: 'Inter',sans-serif;
}

@font-face {
    font-family: 'Rubik';
    src: url('/police/Rubik-Regular.woff2') format('woff2'),
        url('/police/Rubik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/police/Quicksand-Regular.woff2') format('woff2'),
        url('/police/Quicksand-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kaushan Script';
    src: url('/police/KaushanScript-Regular.woff2') format('woff2'),
        url('/police/KaushanScript-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/police/Inter-Regular.woff2') format('woff2'),
        url('/police/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('/police/Exo-Regular.woff2') format('woff2'),
        url('/police/Exo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alex Brush';
    src: url('/police/AlexBrush-Regular.woff2') format('woff2'),
        url('/police/AlexBrush-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('/police/Arimo-Regular.woff2') format('woff2'),
        url('/police/Arimo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {

            font-size: 15px; /* Base légèrement plus petite */
            line-height: 1.5; /* Interligne resserré */
            height: 100vh;
}

        .smiley {
            display: inline-block;
            max-height: 2em;        /* limite la hauteur à la hauteur de la police */
            height: auto;
            vertical-align: middle; /* ou text-bottom / baseline selon l'alignement souhaité */
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}




.conteneur {
  background-color: var(--background-color);
  color: var(--text-color);
  width: 860px;
  max-width: 95%;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: auto;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .conteneur {
    width: 100%;
    max-width: 95%;
    padding: 24px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .conteneur {
    max-width: 100%;
    padding: 16px;
    border-radius: 0;
    margin: 0px;
  }

  body {
  padding: 0px;
}
}

.info-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #96d8ff;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
}

.info-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.info-text {
  line-height: 1.4;
  color:black;
}

a{
  color: var(--lien);
}
