diff --git a/templates/dashboard_base.html b/templates/dashboard_base.html
index 304037f..2f0c5f3 100644
--- a/templates/dashboard_base.html
+++ b/templates/dashboard_base.html
@@ -318,6 +318,17 @@
tr:nth-child(10) td.ticker {
color: #d1d5db;
}
+
+ .post-card a {
+ color: #93c5fd;
+ text-decoration: none;
+ transition: color 0.2s, text-decoration 0.2s;
+ }
+
+ .post-card a:hover {
+ color: #ffffff;
+ text-decoration: underline;
+ }