/* ============================================
   SYNANARCHY - COMPLETE STYLESHEET
   ============================================ */

:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #12121e;
    --bg-tertiary: #1a1a28;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-sapphire: #32ad96;
    --accent-purple: #7c4dff;
    --accent-pink: #ff6b9d;
    --border-color: rgba(50, 173, 230, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.light-theme {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MyriadPro', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
}

/* Material Icons */
.material-icons,
.material-icons-round {
    font-size: inherit;
    vertical-align: middle;
}

/* App Container */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Drawer Styles */
.drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.drawer-left {
    left: 0;
    width: 280px;
    transform: translateX(-100%);
}

.drawer-right {
    right: 0;
    width: 350px;
    transform: translateX(100%);
}

.drawer.open:not(.drawer-left) {
    transform: translateX(0);
}

.drawer.open.drawer-left {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.drawer-header h2 {
    font-size: 1.3rem;
    font-weight: bold;
    flex-grow: 1;
}

.btn-drawer-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.btn-drawer-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-new-session {
    background: var(--accent-sapphire);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content
