body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo {
    max-width: 100%;
    height: auto; /* Ensures the logo scales properly */
    margin-top: 10px; /* Space above the logo */
}

.container {
    text-align: center;
    border: 2px solid #00ff99;
    border-radius: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #001f3f, #003366);
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.5);
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #00ff99;
}

#audio-player {
    display: block; /* Show audio controls */
    width: 100%; /* Full width */
    margin: 10px 0;
}

.controls {
    margin-bottom: 20px;
}

.control-btn {
    background-color: #00ff99;
    border: none;
    border-radius: 5px;
    color: black;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.2em;
    margin: 0 5px;
}

.control-btn.small-btn {
    font-size: 1em;
    padding: 5px 10px;
}

.control-btn:hover {
    background-color: rgba(0, 255, 153, 0.8);
}

.playlist {
    list-style: none;
    padding: 0;
    overflow-y: auto;
    height: 100px; /* Set a fixed height for the scrollable area */
    border: 1px solid #00ff99;
    border-radius: 5px;
    background-color: #222;
}

.scrollable-playlist {
    max-height: 100px; /* Limit the height for scrolling */
}

.playlist li {
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.playlist li:hover {
    background-color: rgba(0, 255, 153, 0.2);
}

.playlist li.active {
    background-color: rgba(0, 255, 153, 0.5);
}

.chat-window {
    margin-top: 20px;
    width: 100%;
}

.chat-log {
    height: 150px;
    overflow-y: auto;
    border: 1px solid #00ff99;
    border-radius: 5px;
    background-color: #ffffff; /* White background */
    padding: 10px;
    text-align: left;
    margin-bottom: 10px;
    color: #000000; /* Black text */
}

#chat-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f0f0f0; /* Light background */
    color: #000; /* Black text */
}

/* Login styles */
#login-container {
    margin-bottom: 20px;
}

#username-input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #222;
    color: #fff;
}

#login-btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #00ff99;
    color: black;
    cursor: pointer;
    transition: background 0.3s;
}

#login-btn:hover {
    background-color: rgba(0, 255, 153, 0.8);
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #00ff99; /* Button color */
    color: black; /* Text color */
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #222; /* Dropdown background color */
    min-width: 360px;
    max-height: 265px; /* Set the maximum height */
    overflow-y: auto; /* Enable scrolling */
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-content div {
    color: white; /* Text color */
    padding: 10px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown-content div:hover {
    background-color: rgba(0, 255, 153, 0.5); /* Highlight on hover */
}

.dropdown:hover .dropdown-content {
    display: block; /* Show the dropdown on hover */
}

.dropdown:hover .dropbtn {
    background-color: rgba(0, 255, 153, 0.8); /* Change button color on hover */
}