/* Style du conteneur de la commande */
.accordion-item-body-content {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Style pour le bloc de commande */
pre {
    background-color: #3e3e3e;
    padding: 10px;
    border-left: 3px solid #007acc;
    border-radius: 5px;
    overflow-x: auto;
    position: relative;
}

/* Style pour le bouton Copier */
.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007acc;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.copy-button:hover {
    background-color: #005a99;
}

/* Icône copier */
.copy-icon {
    width: 12px;
    height: 12px;
}
