/* MegaChat Dark Theme - Default */
:root {
    --primary: #075E54;
    --primary-dark: #054a3f;
    --primary-light: #128C7E;
    --secondary: #34B7F1;
    --accent: #25D366;
    --bg-primary: #111b21;
    --bg-secondary: #202c33;
    --bg-tertiary: #2a3942;
    --bg-header: #202c33;
    --bg-hover: #2a3942;
    --bg-active: #2a3942;
    --text-primary: #e9edef;
    --text-secondary: #8696a0;
    --text-muted: #667781;
    --border: #2a3942;
    --border-light: #3a4a55;
    --danger: #dc2c2c;
    --success: #25D366;
    --warning: #ffbc00;
    --info: #34B7F1;
    --shadow: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.4);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

::selection {
    background: var(--primary);
    color: white;
}