* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Assistant, Roboto, Helvetica, Arial, sans-serif;
    font-size: 11pt;
    line-height: 1.6;
    color: #000;
    background: #fff;
    padding: 20px;
    direction: rtl;
}

#wrap {
    max-width: 100%;
    margin: 0 auto;
}

#page-header {
    text-align: center;
    border-bottom: 3px solid #000;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.print-logo img {
    max-width: 280px;
    height: auto;
    margin-bottom: 15px;
}

.topic-info h1 {
    font-size: 24pt;
    font-weight: 900;
    margin-bottom: 8px;
    color: #000;
}

.site-desc {
    font-size: 11pt;
    color: #444;
    margin-bottom: 5px;
}

.topic-url {
    font-size: 9pt;
    color: #666;
    font-style: italic;
}

/* Posts / Messages */
.post {
    margin-bottom: 30px;
}

.post-header-meta {
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 10pt;
    border: 1px solid #ddd;
}

.post-header-meta .meta-label {
    font-weight: bold;
    color: #333;
}

.post-content {
    font-size: 11.5pt;
    text-align: justify;
    padding: 0 10px;
}

.post-separator {
    border-bottom: 1px dashed #ccc;
    margin: 40px 0;
}

#page-footer {
    border-top: 2px solid #000;
    margin-top: 60px;
    padding-top: 15px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 9pt;
}

.footer-info p {
    margin-bottom: 4px;
}

.footer-page-num {
    font-weight: bold;
    padding: 5px 10px;
    background: #eee;
    border-radius: 3px;
}

/* Typography & Content Helpers */
blockquote,
.postquote {
    border-right: 4px solid #333;
    background: #fafafa;
    margin: 20px 0;
    padding: 15px 25px;
    font-style: italic;
}

code,
.codebox {
    font-family: monospace;
    font-size: 9pt;
    display: block;
    padding: 15px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    margin: 15px 0;
}

ul,
ol {
    margin-right: 40px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

.signature,
.noprint,
.postprofile,
hr {
    display: none !important;
}

a {
    color: #000;
    text-decoration: none;
}

@media print {
    body {
        padding: 0;
    }

    #wrap {
        width: 100% !important;
    }

    #page-body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}