.no-ads ins.adsbygoogle {
    display: none !important;
}

@media screen {
    div#footer {
        text-align: center;
    }
    p {
        letter-spacing: 0.1em;
        word-spacing: 0.2em;
    }
} 

body {
    margin: 10%;
    background-color: #efeae2;
}

ul {
    list-style-image: url('images/os.svg');
}

.breadcrumb2 {
    list-style-image: none;
    padding: 0 .5rem;
    font-size: 130%;
}

.breadcrumb2 ul {
    list-style-image: none;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb2 li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .25rem;
    content: " ";
}

.breadcrumb {
    padding: 0 .5rem;
    font-size: 130%;
    list-style-image: none;
}

.breadcrumb ul {
    list-style-image: none;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .25rem;
    content: "→";
    color: red;
}

.tbi {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    background-color: white;
    border: 4px solid #333;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.tbi-header {
    background-color: #e0e0e0;
    padding: 10px 20px;
    font-weight: bold;
    border-bottom: 2px solid #ccc;
}

.tbi-content {
    padding: 20px;
}

.tbi-content a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tbi-content a:hover {
    background-color: #45a049;
}

.liste_ouf {
    background: #f8fbff;
    border-left: 4px solid #2a5b8f;
    padding: 1.2rem 1.5rem;
    margin: 2rem auto;
    border-radius: 0.25rem;
    font-family: 'Merriweather', 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    max-width: 900px;
}

.liste_ouf h2 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #2a5b8f;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #e0f2ff;
    margin-bottom: 1rem;
}

.liste_ouf ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.liste_ouf ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.liste_ouf ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: #2a5b8f;
    font-weight: bold;
}

.liste_ouf a {
    color: #1e5a8e;
    text-decoration: none;
    transition: color 0.3s;
}

.liste_ouf a:hover {
    color: #2a7bb9;
    text-decoration: underline;
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

.remarques {
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
  padding: 1.5em;
  font-size: 0.9em;
  color: #444;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
  margin-top: 2em;
}

.remarques-title {
  font-family: 'Fira Code', monospace;
  font-size: 1.1em;
  background-color: #1e1e1e;
  color: #00ffcc;
  padding: 0.5em 0.8em;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.remarques ul {
  list-style: none;
  padding-left: 1.2em;
  font-family: 'Courier New', monospace;
}

.remarques ul li::before {
  content: "▸ ";
  color: #0070ba;
  margin-right: 0.3em;
}

.remarques ul ul li::before {
  content: "// ";
  color: #555;
}

.remarques .version {
  margin-top: 1em;
  font-weight: bold;
  color: #333;
}

.remarques .don {
  margin-top: 1.2em;
  font-style: italic;
  color: #666;
}

.remarques .don a {
  color: #0070ba;
  text-decoration: none;
  font-weight: 500;
}

.remarques .don a:hover {
  text-decoration: underline;
}
.remarques-title {
  font-family: 'Fira Code', monospace;
  font-size: 1.1em;
  background-color: #1e1e1e;
  color: #00ffcc;
  padding: 0.5em 0.8em;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
}

.remarques-title:hover {
  animation: blink-terminal 1.2s steps(2, start) infinite;
  background-color: #222;
  color: #00ffaa;
}

.remarques-title:hover::after {
  content: " █";
  animation: cursor-blink 0.8s steps(2, start) infinite;
  color: #00ffaa;
}

@keyframes blink-terminal {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.6; }
}

@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.officiel {
    background: #fffefc;
    border-left: 4px solid #003366;
    padding: 1.2rem 1.5rem;
    margin: 2rem auto;
    border-radius: 0.25rem;
    font-family: 'Merriweather', 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    transition: background 0.3s ease;
    position: relative;
    border-top: 1px dashed #003366;
    border-bottom: 1px dashed #003366;
}

.officiel::before {
    content: "📘 Textes officiels";
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.officiel:hover {
    background: #f8faff;
}

.officiel ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    list-style: none;
}

.officiel ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.officiel ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: #003366;
    font-weight: bold;
    font-size: 1rem;
}

.officiel h2 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #005ea2;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

summary {
    outline: none;
    transition: color 0.3s;
}

summary:hover {
    color: #2a5b8f;
}

details[open] summary::after {
    content: " ▲";
}

details:not([open]) summary::after {
    content: " ▼";
}
