body {
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
    background-color: #f8f8f8;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.header {
    background-color: #4a90e2;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
}

.page-info {
    background-color: #f0f8ff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 11px;
    color: #666;
}

.post {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    display: flex;
    gap: 15px;
}

.post:last-child {
    border-bottom: none;
}

.post-avatar {
    flex-shrink: 0;
}

.post-avatar img {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    display: block;
}

.post-main {
    flex: 1;
}

.post-header {
    margin-bottom: 10px;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.post-number {
    color: #4a90e2;
    font-weight: bold;
    margin-right: 8px;
}

.post-author {
    font-weight: bold;
    color: #333;
    margin-right: 8px;
}

.post-date {
    color: #888;
    margin-right: 8px;
}

.post-location {
    color: #999;
    font-style: italic;
}

.post-title {
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 8px;
}

.post-content {
    margin-bottom: 10px;
    line-height: 1.5;
}

.post-signature {
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 10px;
    color: #777;
}

.post-edited {
    font-size: 9px;
    color: #999;
    font-style: italic;
    margin-top: 5px;
}

div.quoteright{position:relative;float:right;clear:right;width:150px;padding:4px;margin:6px;margin-top:4px;left:0px;font-size:smaller;border:1px gray outset;}
div.quoteright img.embeddedimage{position:relative;float:left;clear:left;left:-11px;}
div.quoteleft{position:relative;float:left;clear:left;width:150px;padding:4px;margin:6px;margin-top:4px;left:0px;font-size:smaller;border:1px gray outset;}
div.quoteleft img.embeddedimage{position:relative;float:left;clear:left;left:-8px;}
div.quoteblock{padding:4px;margin-left:2em;border:thin outset silver;margin-bottom:8px;font-size:smaller;}

h1{font-size:large;margin-top:6px;margin-bottom:6px;background-color:#eeeeff;-webkit-border-radius:8px;-moz-border-radius:8px;padding:4px;}

.spoiler{border:1px dotted gray;border-top:none;}
.spoiler a{text-decoration:none;}

/* Preserve colored text from original forum */
.pink { color: #FF448A; }
.gray { color: #626262; }
.green { color: #008141; }
.purple { color: #6A006A; }
.blue { color: #004183; }
.teal { color: #008282; }
.gold { color: #bc9600; }
.cinnamon { color: #AA6600; }
.forestgreen { color: #2c5500; }
.white { color: #FBFBFB; background-color: #333; padding: 0 2px; }
.red { color: #C80815; }
.evil { 
    background-color: black; 
    color: #C80815; 
    font-weight: bold; 
    border-radius: 4px; 
    border: 1px solid black; 
    padding: 0 2px;
}

/* Links */
a {
    color: #4a90e2;
    text-decoration: underline;
}

a.twikilink {
    color: #0066cc;
}

/* Navigation */
.navigation {
    background-color: #f5f5f5;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.nav-button {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 11px;
}

.nav-button:hover {
    background-color: #e6f3ff;
    border-color: #4a90e2;
}

.nav-button.current {
    background-color: #4a90e2;
    color: white;
    border-color: #357abd;
}

/* Responsive design */
@media (max-width: 768px) {
    .post {
        flex-direction: column;
    }
    
    .post-avatar img {
        width: 80px;
        height: 80px;
    }
}