body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #161418, #1e1b22);
    color: #ffffff;
    font-family: "Gill Sans", sans-serif;
}

select {
    margin-top: 20px;
    padding: 10px;
    background-color: #1e1e1e;
    color: #ffffff; 
    border: 1px solid #333333; 
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

select:hover {
    background-color: #2a2a2a; 
}

select:focus {
    border-color: #555555; 
}

#selector-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


#chat-container {
    width: 80%;
    padding: 10px;

    color: #ffffff;

    border-radius: 5px;
    text-align: center;
}