/* Réinitialisation des styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Police de caractère par défaut */
body {
    padding-top: 50px;
    font-family: Arial, sans-serif;
    background-color: #222;
    color: #fff;
}

/* Conteneur principal */
.container {
    max-width: 60%;
    margin: 20px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-left: 20%;
}

/* Titres */
h1 {
    font-size: 30px;
    color: orange;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 20px;
    color: orange;
    margin-top: 30px;
}

/* Paragraphes */
p {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 10px;
}

/* Endpoints */
.endpoint {
    padding: 10px;
    background-color: #222;
    border-radius: 5px;
    margin-top: 20px;
}

/* Styles pour les titres des endpoints */
.endpoint-title {
    font-size: 20px;
    color: orange;
    margin-top: 30px;
}

/* Styles pour les descriptions des endpoints */
.endpoint-description {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 10px;
}

/* Styles pour les paramètres des endpoints */
.endpoint-params {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 5px;
}

/* Styles pour les réponses des endpoints */
.endpoint-response {
    font-size: 16px;
    color: #FF5733;
    font-weight: bold;
}

/* Styles pour les URL des endpoints */
.endpoint-url {
    font-size: 14px;
    color: #fff;
}

.endpoint p:first-child {
    font-weight: bold;
}

.authorization {
    color: #FF5733;
    font-weight: bold;
}
pre {
    width: 100%;
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    overflow-x: auto;
    white-space: pre-wrap;
}
code {
    display: block;
    padding: 10px;
    margin: 0;
    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 5px;
    border: 1px solid #ddd;
    color : #ffffff;
}