body {
    background-color: #0d0d0d;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
}

h1 {
    color: #00ff00;
    text-align: center;
    margin-bottom: 20px;
}

#chat-box {
    max-width: 800px;
    margin: auto;
    background: #111;
    padding: 20px;
    border: 2px solid #00ff00;
    border-radius: 8px;
}

#messages {
    list-style-type: none;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 10px;
}

#messages li {
    margin-bottom: 10px;
}

input, button {
    background-color: black;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 10px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

input {
    width: 80%;
}

button {
    width: 18%;
    cursor: pointer;
}

button:hover {
    background-color: #003300;
}


.message-row {
    display: flex;
    gap: 0;
}

#messageInput {
    flex: 1;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

button {
    border-left: #00ff00 1px solid;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Scrollbar verte style hacker */
#messages {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00ff00 #111;
}

/* Pour Chrome/Edge */
#messages::-webkit-scrollbar {
    width: 8px;
}
#messages::-webkit-scrollbar-track {
    background: #111;
}
#messages::-webkit-scrollbar-thumb {
    background-color: #00ff00;
    border-radius: 4px;
}

