body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
}

main {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    text-align: left;
}

footer {
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    opacity: 0.7;
}

a {
    color: #1e90ff;
}

/* Ensures filter aligns with the post list */
.filter-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 600px;
    margin: 0 auto 15px;
}

.filter-container label {
    margin-right: 10px;
}

/* Style for dropdown */
#category-filter {
    padding: 5px;
    font-size: 16px;
    margin: 10px 0;
    background: #1a1a1a;
    color: white;
    border: 1xpx solid #444;
    border-radius: 5px;
    cursor: pointer;
}

/* Style dropdown on hover */
#category-filter:hover {
    background: #222;
}

/* Ensures the post list is also centered */
#post-list {
    max-width: 600px;
    margin: 0 auto; 
}

/* Footer styles */
footer {
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    opacity: 0.5;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
}

/* Light up footer on hover */
footer:hover {
    opacity: 0.9;
}

/* Social icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

/* General Style for All Social Icons */
.social-icon {
    height: 30px;
    width: 30px;
    margin: 0 8px;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
    vertical-align: middle;
    opacity: 0.5;
}

/* Individual icon size adjustments */
.social-icon.x-icon { height: 20px; width: 20px; }
.social-icon.email-icon { height: 55px; width: 55px; }
.social-icon.li-icon { height: 25px; width: 30px; }

/* Make icons brighter when hovered */
.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}


.logo {
    height: 50px; 
    width: 50px;  
    border-radius: 50%; 
    object-fit: cover; 
    vertical-align: middle; 
    margin-right: 10px; 
}

.category-label {
    font-size: 14px;
    color: gray;
    margin-left: 8px;
    font-style: italic;
}

/* Style for post list container */
#post-list {
    max-width: 600px;
    margin: 20px auto;
    padding: 0;
}

/* Post item container (styled as a card) */
.post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e1e1e;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 10px 0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.1);
}

/* Post title link (removes ugly blue underline) */
.post-item a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

/* Category label */
.category-label {
    font-size: 14px;
    color: #bbb;
    font-style: italic;
}

/* Hover effect */
.post-item:hover {
    transform: scale(1.03);
}

/* This is for images in exionus.md */
.drone-container {
    display: block; 
    width: 100%; 
    text-align: left; 
    margin: 10px 0;
}

.drone-img {
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: 0; 
}

figcaption {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
    text-align: left; 
}

/* This is for images in runekeeper.md */
.runekeeper-container {
    display: block; 
    width: 100%;
    text-align: left;
    margin: 10px 0;
}

.rk-flow-img {
    max-width: 700px;
    height: auto;
    display: block;
    margin-left: 0;
}

.rk-logo-img {
    max-width: 100px;
    height: auto;
    display: block;
    margin-left: 0;
}

figcaption {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
    text-align: left;
}

/* This is for images in space_vaults.md */
.spacevault-container {
    display: block; 
    width: 100%;
    text-align: left;
    margin: 10px 0;
}

.spacevault-img {
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: 0;
}

figcaption {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
    text-align: left;
}

/* This is for images in space_tugs.md */
.spacetug-container {
    display: block; 
    width: 100%;
    text-align: left;
    margin: 10px 0;
}

.spacetug-concept-img {
    max-width: 400px;
    height: auto;
    display: block;
    margin-left: 0;
}

figcaption {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
    text-align: left;
}