/* Retro Bulletin Board Style (2ch/5ch-like) */

body {
    background-color: #efefef;
    color: #000;
    font-size: 16px;
    font-family: "MS PGothic", "IPAMonaPGothic", "Mona", sans-serif;
    margin: 0;
    padding: 20px;
}

a {
    color: #0000ff;
    text-decoration: underline;
}

a:visited {
    color: #660099;
}

header {
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: #ff0000;
}

/* Thread List Table */
#thread-list {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
}

#thread-list td {
    border: 1px solid #ccc;
    padding: 10px;
}

.thread-link {
    font-weight: bold;
    font-size: 18px;
}

/* Post Styles */
.thread-container {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
}

.post {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.post-header {
    color: #008000;
    font-weight: bold;
    margin-bottom: 5px;
}

.post-id {
    color: #888;
    font-weight: normal;
    font-size: 0.9em;
    margin-left: 10px;
}

.post-content {
    margin-top: 10px;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Back Link */
.nav-links {
    margin-bottom: 20px;
}

footer {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 50px;
}

/* Admin-like or spooky highlight */
.strange-post {
    color: #900;
}
