/**
 * SERSO Family — Calendar taskbar link styling (stopgap)
 * Version: 1.3
 * Added: 2026-06-27
 * Updated: 2026-06-30 — removed custom color override.
 *
 * Root cause found via browser inspector: styles.css already has a
 * global rule `html.dark-mode a { color: #33FFCC !important; }` that
 * colors ALL links including native taskbar buttons (Contacts, etc).
 * Our earlier custom color rule was MORE specific than that global
 * rule, so it incorrectly won the cascade and made Calendar look
 * different (muted grey) instead of matching the others (aqua).
 * Fix: don't override color at all — let it inherit from the
 * existing global rule, same as every other link in the app.
 *
 * Standalone file — does not modify styles/styles.css.
 * To remove: delete this file and its <link> include in layout.html.
 *
 * Icon mechanism matches elastic's own taskbar buttons (see
 * skins/elastic/styles/widgets/menu.less): Font Awesome glyph via
 * :before content. \f073 = fa-calendar.
 */
#taskmenu a.button.serso-calendar:before {
    content: "\f073";
}
