body {
    margin: 0;
    overflow: hidden;
}

* {
    box-sizing: border-box;
    font-family: CMUTypewriterLight, 'Courier New', Courier, monospace;
}
.plant {
    display: flex;
    width: 246px;
    height: 246px;
    font-size: 0.5em;
    border-radius: 5px;
    border: 2px dotted black;
}

.chat-container {
    width: 100px;
    height: 250px;
}

.message-window {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    height: 75%;
    overflow-y: auto;
    padding: 2px;
    padding-right: 6px;
    overflow-x: hidden;
    word-break: break-all;
}

ul.live-chat {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
    overflow: -moz-scrollbars-none;  /* Older Firefox */
}
ul.live-chat::-webkit-scrollbar { 
    display: none;  /* Older Safari and Chromium */
}

.message {
    margin-bottom: 6px;
}

.username {
    font-weight: bold;
    color: #6441a5;
}

.input-area {
    border-top: 2px dotted black;
    padding: 4px;
}

.input-area > textarea {
    font-size: 0.7em;
    resize: none;
}

#chat-input {
    width: 99%;
}

button {
    font-size: 0.7em;
}

.stream-window {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    border-right: 2px dotted black;
    width: 150px;
    background: url("../images/static-slow.gif");
    background-size: 150px 250px;
    background-repeat: none;
    background-position: center;
    background-clip: padding-box;
}

.stream-window > img {
    user-select: none;
    height: 60%;
}

.top-banner, .bottom-banner {
    position: relative;
    width: 100%;
    height: 20%;
    background: rgba(5, 5, 5, 0.9);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 5px;
}

.top-banner {
    top: 0;
}

.bottom-banner {
    bottom: 0;
}

a {
    text-decoration: underline dotted;
    color: white;
}
