@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/hung1001/font-awesome-pro@4cac1a6/css/all.css');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    color: #ffffff;
    background-color: #262626;
}

nav {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 243px;
    background-color: #151515a1;
}

nav > img {
    width: 100%;
    padding: 17px 17px 17px 17px;
}

nav > section.pages {
    position: absolute;
    top: 85px;
    left: 0px;
    right: 0px;
    bottom: 40px;
    text-align: center;
}

nav > section.pages > button {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    border: none;
    cursor: pointer;
    height: 40px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
    outline-color: #f7bb03;
    background-color: transparent;
    color: #ffffff;
    width: calc(100% - (10px * 2));
    transition: .3s all;
}

nav > section.pages > button > i {
    margin-right: 4px;
}

nav > section.pages > button:hover {
    background-color: #ffd65c3c;
    color: #f7bb03;
}

main {
    position: absolute;
    overflow: auto;
    top: 0px;
    left: 243px;
    right: 0px;
    bottom: 0px;
    padding: 17px 17px 17px 17px;
}

iframe {
    width: 100%;
    height: calc(100% - 7px);
}

article {
    width: 100%;
    min-height: 30px;
    border-radius: 7px;
    background-color: #1d1d1dc6;
    padding: 17px 17px 17px 17px;
    min-height: calc(100vh - 34px); /* Ajuster la hauteur en fonction de la hauteur de la fenêtre */

}

hr {
    border-color: #f7bb03;
}

a {
    color: #f7bb03;
    text-decoration: none;
    transition: all .3s;
}

h1 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 5px;
}

ol {
    word-break: break-all;
    margin: 10px;
    padding: 0;
}

ol ol {
    margin-left: 2em;
}
li {
    list-style-position: inside;
    padding: 0;
}

a:hover {
    color: #ffc927;
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #f7bb03;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffc927;
}

.announcement {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.announcement a {
    color: #FFA500; /* orange */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.announcement a:hover {
    color: #FFD700; /* lighter orange */
}

.announcement h3 {
    color: #f7bb03; /* orange */
    margin-top: 0;
    font-size: 24px;
}

.announcement ul {
    list-style-type: none;
    padding-left: 0;
}

.announcement li {
    margin-bottom: 10px;
    font-size: 18px;
}

.emoji {
    font-size: 24px;
    margin-right: 10px;
}

.subcategory {
    margin-top: 30px;
    border-top: 2px solid #f7bb03;
    padding-top: 20px;
}

.subcategory h2 {
    color: #f7bb03;
}

.command {
    margin-bottom: 20px;
}

.command p {
    font-size: 18px;
    line-height: 1.6;
}

.command p i {
    margin-right: 10px;
}