/*
Theme Name: CleanForum
Theme URI: https://example.com/cleanforum
Author: ChatGPT
Version: 1.0
Description: A minimal, custom-built WordPress theme for forum-style discussions without plugins.
*/
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}
header, footer {
    background: #333;
    color: white;
    padding: 1em;
    text-align: center;
}
.forum-wrapper, .topic-thread {
    max-width: 800px;
    margin: auto;
    padding: 1em;
    background: white;
}
.topic {
    border-bottom: 1px solid #ccc;
    padding: 0.5em 0;
}
form input[type="text"], form textarea {
    width: 100%;
    margin-bottom: 1em;
    padding: 0.5em;
}
form input[type="submit"] {
    padding: 0.5em 1em;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}
