diff --git a/style.css b/style.css index d4fe5bb..65fceb1 100644 --- a/style.css +++ b/style.css @@ -848,4 +848,19 @@ a { color: var(--link-color); text-decoration: none; } /* Ensure hidden elements stay hidden in print */ .hidden { display: none !important; } .cv-mode .hidden { display: none !important; } + + /* Render interests as horizontal pills in print */ + .personal-tags { + flex-direction: row !important; + flex-wrap: wrap !important; + gap: 4px !important; + } + .personal-tag { + display: inline-flex !important; + align-items: center !important; + padding: 2px 8px !important; + border: 1px solid #ccc !important; + border-radius: 3px !important; + background: #f7f7f7 !important; + } }