/* Existing light theme (default) styles */
body {
    background-color: white;
    color: black;
}

a {
    color: blue;
    text-decoration: none; /* Remove underline */
}
a:hover {
    color: #0056b3; /* Darker shade for hover */
}

[data-theme='dark'] body {
    background-color: #121212;
    color: #e0e0e0;
}
[data-theme='dark'] a {
    color: #bb86fc;
}
.button, .language-switcher button {
    background-color: #f0f0f0;
    color: black;
}
[data-theme='dark'] .button, [data-theme='dark'] .language-switcher button {
    background-color: #333;
    color: #e0e0e0;
}

/* Additional styles for post links */
#postList a {
    color: #007BFF;
    transition: color 0.3s ease;
}
#postList a:hover {
    color: #0056b3;
}
