html, body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("../image/background.jpg");
    height: 100%;
    font-family: "Helvetica", sans-serif;
}

.app-window {
    border: 1px solid black;
    min-width: 250px;
    min-height: 300px;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 10;
    border-radius: 5px;
}

.toolbar {
    height: 30px;
    background-color: gainsboro;
    border-bottom: 1px solid black;
    cursor: default;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
}

.toolbar-menu {
    height: 20px;
    width: 20px;
    margin: 5px;
    display: inline-block;
}

.toolbar-icon {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.toolbar-dropdown {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
    top: 31px;
    left: 0;
    font-size: 12px;
}

.toolbar-dropdown div {
    padding: 5px;
}

.toolbar-dropdown div:hover {
    background-color: #f1f1f1;
}

.close-window {
    float: right;
    cursor: pointer;
    margin: 5px 5px 5px auto;
    height: 20px;
    width: 20px;
}

.chat-lines {
    background-color: white;
    padding: 0 2px;
    display: flex;
    flex-direction: column-reverse;
    height: 280px;
    overflow: scroll;
}

.chat-message {
    width: 100%;
    word-wrap: break-word;
    font-family: "Consolas", monospace;
    font-size: 12px;
}

.chat-line {
    font-family: "Consolas", monospace;
    display: inline;
    margin: 0;
}

.chat-form {
    height: 36px;
}

.chat-form textarea {
    width: 100%;
    box-sizing: border-box;
    resize: none;
    height: 36px;
    font-family: "Consolas", monospace;
    font-size: 12px;
}

.notebook textarea {
    min-width: 250px;
    min-height: 268px;
    margin-bottom: -3px;
    border: 0;
    box-sizing: border-box;
}

.notelist {
    list-style-type: none;
    margin: 0;
    padding: 5px;
    height: 259px;
    overflow: scroll;
}

.notebook-listitem {
    cursor: pointer;
}

.delete-item {
    height: 10px;
    width: 10px;
    float: right;
    cursor: pointer;
    margin: 3px;
}

#window_container {
    position: relative;
}

.highlighted {
    outline: 1px solid orange;
    outline-offset: -4px;
}

.right-aligned {
    overflow: hidden;
    list-style-type: none;
    margin-left: auto;
}

.right-aligned li {
    float: left;
    width: 32px;
    height: 32px;
    padding: 0 10px;
}

.menu-bar {
    font-family: "Montserrat", "Helvetica", sans-serif;
    font-size: 27px;
    display: flex;
    height: 50px;
    background-color: gainsboro;
    border-bottom: 1px solid grey;
    margin-bottom: 10px;
    align-items: center;
    padding: 0 10px;
}

.menu-bar img {
    width: inherit;
    height: inherit;
    cursor: pointer;
}

.board {
    margin: 0 auto;
    min-height: 192px;
}

.memory-brick {
    height: 48px;
    width: 48px;
    margin-bottom: -4px;
}

.removed {
    visibility: hidden;
}

.new-game {
    display: table;
    margin: 0 auto;
}

.new-game input {
    width: 20px;
}

.new-game button {
    margin-right: 6px;
}

.memory {
    padding: 20px;
}

.chat {
    width: 500px;
}

.memory-menu {
    margin: 20px auto 0;
    width: 200px;
    font-size: 12px;
}

.info {
    display: table;
    margin: 0 auto 2px;
}
