body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    background: white;
    color: #222;
    margin: 20px;
}

/* Categories (actual categories AND root .txt article titles) */
.category {
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    color: #3C3C3C; /* Dark Gray */
}

.root-article-title {
    display: block;
    text-decoration: none;
    margin: 5px 0;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    color: #3C3C3C; /* Dark Gray */
}

/* Articles listed inside categories (indented) */
.article-title {
    display: block;
    text-decoration: none;
    margin: 5px 0;
    cursor: pointer;
    color: #3c3c3c; /* Slightly lighter gray */
    margin-left: 20px; /* Indent for non-root articles */
}

.article-title:hover {
    text-decoration: none;
}


/* Article content (including root txt articles) */
.article-content {
    display: none;
    width: 50%;
    max-width: 600px;
    text-align: justify;
    margin-left: 20px; /* Match the indent of non-root article titles */
    padding-top: 5px;
    line-height: 1.6;
    color: #727272; /* Even lighter gray */
    font-weight: normal; /* Ensure content is NOT bold */
}

/* Style for links inside articles */
.article-content a {
    color: #3D3D3D; /* Darker gray */
    text-decoration: none; /* No underline */
}

.article-content a:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

/* Style for embedded images inside articles */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

/* Full width for mobile */
@media (max-width: 768px) {
    .article-content {
    width: 100%;        /* Take the full available width */
    padding-right: 15px; /* Apply padding only on the left */
    box-sizing: border-box; /* Ensure the padding is included in the total width */
    }
}

.subscribe-button, .unsubscribe-button {
    display: inline-block;
    padding: 4px 8px;
    margin: 5px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #333; /* Dark grey text */
    background-color: white;
    border: 1px solid black; /* Black border */
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.subscribe-button:hover, .unsubscribe-button:hover {
    background-color: #f0f0f0;
    color: #000;
}

