@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-panel: #111113;
    --bg-input: #1c1c1e;
    --text-main: #eeeeee;
    --text-muted: #888888;
    --accent-blue: #0084ff;
    --accent-green: #00e699;
    --border: #222224;
    --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #333;
    height: 100vh;
    overflow: hidden;
    color: var(--text-main);
}

/* --- Main Grid Layout --- */
.stracti-app {
    display: grid;
    /* 3 Columns: Left Sidebar | Center Viewport | Right Sidebar */
    grid-template-columns: 260px 1fr 280px;
    /* 2 Rows: Main Content | Bottom Timeline */
    grid-template-rows: 1fr 300px; 
    height: 100vh;
    gap: 12px;
    padding: 12px;
    background-color: #272424;
}

/* --- Base Component Containers --- */
aside, footer, main {
    background-color: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pull-right { margin-left: auto; }
.cursor-p { cursor: pointer; }