/*
Theme Name: jo6n Theme
Theme URI: https://jo6n.com
Author: jo6n
Author URI: https://jo6n.com
Description: A minimalist, monochrome WordPress theme inspired by Hacker News.
Version: 1.0
License: MIT
*/

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #333;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

center {
    display: flex;
    justify-content: center;
}

#hnmain {
    background-color: #fff;
    width: 600px;
    margin-top: 2rem;
    border: 1px solid #eee;
}

@media (max-width: 650px) {
    #hnmain {
        width: 95%;
        margin-top: 0;
        border: none;
    }
}

/* Header */
.header-bar {
    background-color: #222;
    padding: 4px;
}

.logo-box {
    border: 2px solid #ff0000;
    /* Red border */
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 16px;
    color: white;
    font-weight: bold;
    font-size: 10pt;
    border-radius: 50%;
    /* Circular Logo */
}

/* Custom Logo Image */
.custom-logo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    display: block;
}

.pagetop {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #ccc;
    display: flex;
    align-items: center;
}

.pagetop a {
    color: #ccc;
    cursor: pointer;
}

.pagetop a:hover {
    color: #fff;
}

.pagetop .current-menu-item>a {
    color: #fff;
    font-weight: bold;
}

.hnname {
    margin-right: 10px;
}

.hnname a {
    color: #fff;
    font-weight: bold;
}

/* WP Menu Styles */
.menu-primary-menu-container,
#primary-menu,
.menu {
    display: inline-block;
    margin: 0;
    padding: 0;
}

#primary-menu li,
.menu li {
    display: inline;
    list-style: none;
    margin-right: 5px;
}

#primary-menu li:after,
.menu li:after {
    content: "|";
    color: #ccc;
    margin-left: 5px;
}

#primary-menu li:last-child:after,
.menu li:last-child:after {
    content: "";
}

/* Item List */
.itemlist {
    padding: 10px 15px;
}

.rank {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #999;
    margin-right: 8px;
}

.title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #333;
    overflow: hidden;
}

.titlelink {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.titlelink:visited {
    color: #555;
}

.comhead {
    font-size: 8pt;
    color: #999;
}

.subtext {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 8pt;
    color: #888;
}

.subtext a {
    color: #888;
    text-decoration: none;
}

.subtext a:hover {
    text-decoration: underline;
}

/* Footer */
.footer-line {
    background-color: #222;
    height: 2px;
}

.yclinks {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 8pt;
    color: #666;
}

.yclinks a {
    color: #666;
    text-decoration: none;
}

.yclinks a:hover {
    color: #000;
    text-decoration: underline;
}

/* Links */
a {
    text-decoration: none;
}

/* Comment Text */
.comment {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    color: #333;
    max-width: 100%;
    line-height: 1.5;
}

.c00 {
    color: #333;
}