
        body {
            background-color: black !important;
            color: white;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
			align-items: center;
            height: 100vh;
            flex-direction: column;
        }
        
.server-message {
    color: #ffcc00 !important;  /* Bright yellow text */
    font-weight: bold;
    background-color: #333;  /* Dark background */
    padding: 5px;
    border-radius: 5px;
}

h1 {
    background: linear-gradient(to right, orange, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3em; /* Make the text a little smaller */
    margin-top: 10px; /* Move it down 5px */
    margin-left: 0; /* Remove any existing left margin */
    position: relative; /* Allow for positioning adjustments */
    left: -30px; /* Move it 10px to the left */
}

        #container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
             width: 100%;
        }

         #messageContainer,#videoContainer {
	         position: relative; /* This allows for absolute positioning of the logo inside */
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        video {
            width: 45vw;
            height: auto;
             max-height: 480px;
            border: 3px solid white;
            border-radius: 10px;
        }
        
#logo {
    position: absolute;
    top: 10px; /* Distance from the top of the video */
    left: 10px; /* Distance from the left of the video */
    width: 50px; /* Size of the logo, adjust as needed */
    height: auto; /* Maintain aspect ratio */
    z-index: 10; /* Ensures it stays above the video */
}
        
#pointsContainer {
    display: flex;
    flex-direction: column;  /* Stack them vertically */
    align-items: center;     /* Align them in the center */
    justify-content: center; /* Center them horizontally */
    color: white;            /* Text color */
    margin-top: 3px;        /* Add some margin at the top */
}        
        
#YourPoints, #onlineUsers {
    font-size: 1em; /* Make the text larger */
    background: linear-gradient(to right, orange, red); /* Gradient similar to your title */
    -webkit-background-clip: text; /* Apply the gradient to the text */
    -webkit-text-fill-color: transparent; /* Make the text color transparent to show the gradient */
    font-weight: bold;
    margin-top: 3px;
    text-align: center;
}

#onlineCount {
     color: green !important; /* Make the number green */
}
#messageContainer {
    background-color: black; /* Light grey background */
    padding: 10px;
    border-radius: 10px; /* Rounded corners */
    margin-top: 5px;
    width: 93vw; /* Full width */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    box-sizing: border-box; /* Ensure padding doesn’t affect the layout */
}

#messageArea {
    background-color: black; /* Lighter grey for messages */
    height: 165px; /* Increased height for more space */
    overflow-y: hidden; /* Allows vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    margin-bottom: 5px;
    padding: 2px;
    border-radius: 5px;
    font-size: 0.8em; /* Adjust this value to make the font smaller */
    width: 100%; /* Full width but with slight margin for padding */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap to the next line */
    word-wrap: break-word; /* Break long words to avoid overflow */
}

#messageBox {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Full width */
    gap: 5px;
    margin-top: auto; /* Pushes the input box to the bottom   INPUT BOX*/
}



.message {
    background-color: black; /* Slightly darker grey for messages */
    padding: 6px;
    margin-bottom: 5px;
    border-radius: 5px;
    color: gray;
}

/* Style for chat links */
.message a {
    color: #007bff;  /* Nice blue color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make it stand out */
    transition: color 0.2s ease-in-out;
}

.message a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline on hover */
}

#messageInput {
	background-color: black;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    margin-top: 1px; /* Move the input box up */
    border: 1px solid #ccc;
     color: gray;
}

#sendButton {
    width: 15%;
    padding: 10px;
    background-color: orange;
    border: none;
    color: black;
    border-radius: 5px;
    margin-top: 1px; /* Move the input box up */
    cursor: pointer;
}

#sendButton:hover {
    background-color: red;
    color: white;
}
        #topButtons {
            display: flex;
            justify-content: center;
            background-color: black;
            width: 92.5%;
            padding: 10px;
            box-sizing: border-box;
            margin-bottom: 20px;
    /* NEW LINES */
    position: sticky;
    top: 0;
    z-index: 1000;
        }
        #nextButton:disabled {
            background-color: grey;
            cursor: not-allowed;
        }

        #nextButton {
            margin-right: 5px;
            padding: 10px 20px;
            font-size: 1.2em;
            background-color: orange;
            border: none;
            color: black;
            border-radius: 5px;
            cursor: pointer;
        }

        #nextButton:hover {
            background-color: red;
            color: white;
        }

        #userButtons {
            display: flex;
            gap: 10px;
        }

        #userButtons button {
            margin: 5px;
            padding: 10px 20px;
            font-size: 1em;
            background-color: gray;
            border: none;
            color: white;
            border-radius: 5px;
            cursor: pointer;
        }

        #userButtons button:hover {
            background-color: white;
            color: black;
        }


