body {
    background: #000;
    color: #00ff39;
    font-family: monospace;
    margin: 0;
    padding: 20px 10px 20px 30px; /* Adjusted padding: left 30px, right 10px, top/bottom 20px */
    font-size: 16px;
}

#header {
    margin-bottom: 20px;
    text-align: left;
}

#tchkrv {
    font-size: 24px;
}

#pages {
    margin-left: 10px;
    font-size: 16px;
}

#pages a {
    color: #00ff39;
    text-decoration: none;
    font-family: monospace;
}

#pages a:visited {
    color: #00ff39;
    text-decoration: none;
    font-family: monospace;
}

#pages a:hover {
    color: #00ff39;
    text-decoration: none;
    font-family: monospace;
}

#pages a:active {
    color: #00ff39;
    text-decoration: none;
    font-family: monospace;
}

#content {
    margin-top: 20px;
}

#posts {
    text-align: left;
    margin-left: 0; /* Remove extra left margin to rely on body padding */
}

#about-text {
    font-size: 16px;
    text-align: center;
}

.post {
    margin: 15px 0; /* Increased vertical margin for more space */
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 2.0; /* Further increased line height for more space between lines */
}

.post-title {
    margin-right: 15px; /* Increased right margin for title */
}

.timestamp {
    color: #00ff39;
    font-size: 12px;
}

.button {
    color: #00ff39;
    font-size: 12px;
    margin: 0 10px;
}

#nav {
    margin-top: 20px;
}

/* Media Query for Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    body {
        padding: 10px 5px 10px 20px; /* Reduced padding, more left (20px), less right (5px) */
    }

    #header {
        margin-bottom: 15px;
    }

    #tchkrv {
        font-size: 20px;
    }

    #pages {
        margin-left: 5px;
        font-size: 14px;
    }

    #content {
        margin-top: 15px;
    }

    #posts {
        margin-left: 0; /* Rely on body padding */
    }

    .post {
        font-size: 14px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        line-height: 2.2; /* Even more line height for mobile */
        margin: 12px 0; /* Adjusted vertical margin */
    }

    .post-title {
        margin-right: 10px; /* Adjusted margin for mobile */
    }

    .timestamp {
        font-size: 10px;
    }

    .button {
        font-size: 10px;
        margin: 0 5px;
    }

    #nav {
        margin-top: 15px;
    }

    #about-text {
        font-size: 14px;
    }
}