* {
    margin: 0;
    background-color: transparent;
    padding: 0;
    font-family: 'minecraft', fantasy;
    box-sizing: border-box;
    border: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    height: 100vh; /* Set the height of the body to cover the entire viewport */
    overflow: hidden; /* Prevent overflow */
    background-color: black; /* Set the background color to white or any other desired color */
    background-image: url('images/talisman_mobile.jpg');
    background-size: cover; /* Ensure the background image covers the entire viewport */
    background-repeat: no-repeat;
    background-position: center; /* Center the background image */
}

.timestamp {
    color: rgb(19, 141, 165);
}

.side-nav {
    position: fixed;
    background: transparent !important;
    left: 0;
    top: 0;
    width: 100%; /* Adjusted width */
    height: auto; /* Adjusted height */
    transform: translateY(0); /* Adjusted transform */
    background-color: transparent;
    padding: 10px; /* Adjusted padding */
    display: flex;
    flex-direction: row; /* Adjusted flex-direction */
    justify-content: space-around; /* Adjusted alignment */
}

.side-nav ul {
    list-style: none;
    display: flex; /* Adjusted display */
    flex-direction: row; /* Adjusted alignment */
}

.side-nav ul li {
    margin: 0 10px; /* Adjusted margin */
}

.side-nav ul li a {
    text-decoration: none;
    color: transparent;
    font-size: 14px; /* Adjusted font size */
}

.button {
    margin-bottom: 0px;
    padding: 0px;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}

#mineflayer-chat-container {
    width: 90%;
    max-width: 850px;
    top: 20%;
    left: 50%;
    margin: 0 auto; /* Center the chat container */
    padding: 10px;
    overflow-y: auto; /* Allow the chat container to scroll */
    margin-bottom: 100px; /* Adjusted margin-bottom */
    border: none; /* Remove the border */
}

#mineflayer-chat-container h2 {
    color: #01C0C4;
    font-size: 150%; /* Adjusted font size */
}

#mineflayer-chat-messages {
    margin-top: 5px;
    max-height: 50vh; /* Adjusted max height */
    font-size: 90%; /* Adjusted font size */
    padding-left: 5px;
}

#mineflayer-chat-messages-container {
    background-color: rgba(0, 0, 0, 0.438);
    z-index: 1;
    height: 50vh; /* Adjusted height */
}

.side-nav .const img,
.side-nav .discord img,
.side-nav .twitter img,
.side-nav .telegram img,
.side-nav .youtube img {
    width: 40px; /* Adjusted width */
    height: 40px; /* Adjusted height */
}

.join-message,
.death-message,
.leave-message,
.whisper-message,
.console-message,
.other-message,
.green-text-message,
.the-honored-one,
.white-text,
.timestamp {
    font-size: 0.9em; /* Adjusted font size */
}

#message-input-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content horizontally */
    width: 90%;
    max-width: 850px;
    margin: 10px auto; /* Center the input container */
    border: none; /* Remove the border */
    left: 50%;
}

#message-input {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #01C0C4;
    background-color: transparent;
}

#token-input {
    margin-left: 10px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100px;
    color: #01C0C4;
    background-color: transparent;
}

#message-input-container button {
    padding: 8px 16px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #01C0C4;
    margin-left: 10px;
}

#message-input-container button:hover {
    background-color: #1194ac;
}