/* Basic Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
    line-height: 1.5;
}

a {
    color: #4CAF50; /* Green links */
    text-decoration: none;
}

a:hover {
    color: #FF6347; /* Hover to red */
}

/* Header */
header {
    background-color: #8B0000; /* Dark red background */
    padding: 20px;
    text-align: center;
    font-size: 2em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Thread and Post List */
.board-thread, .post {
    background-color: #fff;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.board-thread:hover, .post:hover {
    background-color: #ffebcd; /* Light background on hover */
}

/* Highlighting new posts */
.new-post {
    background-color: #FF6347; /* Red for new posts */
    color: white;
    border-radius: 5px;
    padding: 5px;
}

/* Post Content */
.post-content {
    font-size: 1.1em;
    color: #444;
}

.post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    background-color: #8B0000;
    padding: 10px;
    color: #fff;
    font-size: 0.9em;
}

/* Christmas-Themed Decorations */
.christmas-tree {
    width: 50px;
    height: 50px;
    background-image: url('https://example.com/christmas-tree.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.christmas-snowflakes {
    background: url('https://example.com/snowflakes.png') repeat;
    height: 100px;
    background-size: 20px;
}

/* Buttons */
button {
    background-color: #4CAF50; /* Green buttons */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #FF6347; /* Red on hover */
}

/* Minimalist Board */
.board-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Christmas Banner */
.christmas-banner {
    text-align: center;
    background-color: #FF6347;
    padding: 15px;
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
}

.christmas-banner span {
    font-size: 1.4em;
    color: #fff;
}