@charset "UTF-8";
@import "../../node_modules/@fortawesome/fontawesome-free/css/all.min.css";
/* Exemple de style rapide pour la sidebar */
body {
  display: flex;
  margin: 0;
  font-family: sans-serif;
}

aside.sidebar {
  position: sticky;
  top: 0;
  width: 200px;
  height: 100vh;
  background: #f0f0f0;
}

aside.sidebar ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
}

aside.sidebar li {
  margin-bottom: 0.5rem;
}

main {
  flex: 1;
  padding: 1rem;
}

section {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #ddd;
}

/* Petites classes utilitaires */
.d-none {
  display: none !important;
}

/* Par exemple, pour le code */
pre {
  background: #f8f8f8;
  padding: 1rem;
  border: 1px solid #ddd;
  overflow: auto;
}

.copy-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10; /* Pour être devant CodeMirror */
  padding: 5px 8px;
  border: none;
  background: #333; /* Couleur de fond */
  color: #fff; /* Couleur icône / texte */
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.copy-btn:hover {
  opacity: 1;
}

.main-header {
  background-color: #eee;
  padding: 20px;
}
.main-header h1 {
  color: #333;
  font-size: 2rem;
}

.btn-group button {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
/*# sourceMappingURL=app.css.map */