/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #e0e0e0;
    line-height: 1.8;
}

h1, h2, h3, h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #cccccc;
}

a {
    color: #66b3ff;
    text-decoration: none;
}

a:hover {
    color: #1e90ff;
}

/* Header Section */
header {
    background-color: #252525;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    font-weight: 300;
}

header p {
    font-size: 1.2em;
    font-style: italic;
    margin-top: 5px;
    color: #aaaaaa;
}

/* Blog Post Container */
.blog-post {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.blog-post img {
    max-width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Post Metadata */
.post-meta {
    color: #bbbbbb;
    font-size: 0.9em;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

/* Table Styles */
.table-container {
    margin-top: 30px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #333;
}

table thead th {
    background-color: #444;
    color: #fff;
    padding: 12px;
    text-align: left;
}

table tbody td {
    padding: 10px;
    border: 1px solid #444;
    color: #ddd;
}

table tbody tr:nth-child(even) {
    background-color: #3c3c3c;
}

table tbody tr:hover {
    background-color: #555;
}

/* Footer Section */
footer {
    background-color: #1c1c1c;
    color: #777;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .blog-content h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    table {
        font-size: 0.9em;
    }
}
