body {
    background: #008080;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
    margin: 0;
    padding: 20px;
}

.window {
    width: 750px;
    background: #C0C0C0;
    border: 2px solid #000;
    box-shadow: 2px 2px #404040;
    margin: auto;
}

.title-bar {
    background: #000080;
    color: white;
    padding: 4px 6px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-bar .buttons span {
    display: inline-block;
    width: 16px;
    height: 14px;
    border: 1px solid white;
    text-align: center;
    line-height: 12px;
    margin-left: 4px;
    background: #C0C0C0;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

.menu-bar {
    background: #C0C0C0;
    padding: 3px 6px;
    border-bottom: 2px solid #808080;
    font-size: 14px;
}

.menu-bar span {
    margin-right: 10px;
    cursor: pointer;
}

.content {
    padding: 15px;
    font-size: 14px;
}

hr {
    border: none;
    border-top: 2px solid #808080;
    margin: 10px 0;
}

.button {
    padding: 4px 10px;
    background: #C0C0C0;
    border: 2px solid #808080;
    display: inline-block;
    cursor: pointer;
    box-shadow: inset -1px -1px 0 0 #ffffff, inset 1px 1px 0 0 #404040;
    margin: 5px 0;
}

a {
    color: #000080;
    text-decoration: underline;
}

.status-bar {
    background: #C0C0C0;
    padding: 4px;
    border-top: 2px solid #808080;
    font-size: 12px;
    color: #404040;
}