/*
 * File: RT_Stylesheet_Dark.css
 * Version: 1.1.2
 * Purpose: Dark theme – ONLY :root variables (structure moved to Global.css)
 * Latest Changes (v1.1.2 - 2026-04-24):
 *   - Added .rt-header-logo-* display rules for automatic dark-mode logo switching
 */

:root {
    --bg-primary: #09090b;
    --bg-card: #17171e;
    --text-primary: #f1f5f9;
    --text-secondary: #a1a1aa;
    --accent-emerald: #10b981;
    --border-color: #27272a;
    --rt-card-bg: #1e1e28a6;
    --rt-card-border: #27272a;
    --rt-dash-lines: #3f3f46;
    --rt-badge-border1: #696969af;
    --rt-badge-background1: #252525af;
    --rt-badge-border2: #1d6e59;
    --rt-badge-background2: #054d40;
    --header-bg: #17171e;
    --header-border: #27272a;
    --header-text: #f1f5f9;
    --header-text-secondary: #a1a1aa;
    --header-accent: #67e8f9;
    --header-hover-accent: #22d3ee;
    --mobile-menu-bg: #09090baf;
    --mobile-menu-header-bg: #17171e;
    --mobile-menu-signout-section-bg: #17171e;
    --rt-list-row-bg: #1e1e28a6;
    --rt-list-row-hover: #095c40;
    --rt-forms-toggle-slider-bg: #2e2e35;
    --rt-forms-select-bg: #1e1e28a6;
    --rt-input-focus-bg: #18181ba6;
    --rt-text-primary:#ebe5eb;
}

/* Dark mode logo visibility */
.rt-header-logo-dark { display: inline-block; }
.rt-header-logo-light { display: none; }