#chat_log .window_body {
    justify-content: flex-start;
    display: flex;
}

.window {
    display: flex;
    flex-direction: column;
    max-width: 100%;
	position:absolute;
}

.window_header {
    display: flex;
    user-select: none;
    align-items: center;
    height: 32px;
    padding: 2px 7px 0 10px;
    border-image: url("img/desktop/window_header.png") 0 9 fill / 0px 9px;
    image-rendering: pixelated;
    font-family: Trebuchet MS, Tahoma, sans-serif;
    color: white;
    font-size: 16px;
    text-shadow: #0006 2px 2px 1px;
}

body.vaporwave .window_header {
    border-image: url("img/desktop.vaporwave/window_header.png") 0 9 fill / 0px 9px;
    height: 26px;
    font-size: 12px;
    text-shadow: none;
}

.window_body {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 0px 5px 5px 5px;
    border-image: url("img/desktop/window_border.png") 0 6 6 6 / 0px 6px 6px 6px;
    image-rendering: pixelated;
    background: #ffe;
    overflow: hidden;
}

body.vaporwave .window_body {
    border-image: url("img/desktop.vaporwave/window_border.png") 0 6 6 6 / 0px 6px 6px 6px;
    background: white;
}

.window_close {
    margin-left: auto;
    width: 21px;
    height: 21px;
    margin-bottom: 2px;
    background-image: url("img/desktop/close.png");
}

body.vaporwave .window_close {
    background-image: url("img/desktop.vaporwave/close.png");
    margin-bottom: 0;
}

.window_close:hover {
    background-position-y: -21px;
}

.window_close:active {
    background-position-y: -42px;
}
.window_content {
    flex: 1;
    padding: 2px;
    overflow: hidden auto;
}

.settings .window_content {
    display: flex;
    flex-direction: column;
    padding: 4px;
}

.blacklist {
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.export_window .window_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.import_window .window_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

