/* Add or update CSS rules as needed */
body {
    background-color: #008080;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
}

.window {
    background-color: #C0C0C0;
    border: 2px solid #000;
    width: 600px; /* Adjust width for forum layout */
    margin: 20px auto; /* Center the window */
    box-shadow: 4px 4px 0 #000;
}

.title-bar {
    background: #000080;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-bar-text {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.title-bar-text .logo {
    height: 16px;
    width: 16px;
    margin-right: 4px;
}

.title-bar-controls button {
    width: 16px;
    height: 16px;
    background: #C0C0C0;
    border: 1px solid #000;
    margin-left: 5px;
    padding: 0;
}

.title-bar-controls button:active {
    background: #808080;
}

.window-body {
    padding: 10px;
}

.forum-post {
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
}

.forum-post.reply {
    background-color: #f0f0f0;
}

.post-header {
    font-size: 14px;
    margin-bottom: 5px;
}

.post-author {
    font-weight: bold;
    margin-right: 10px;
}

.post-date {
    color: #666;
}

.post-content {
    margin-bottom: 10px;
}

.post-footer {
    margin-top: 10px;
}






