/* ROOT - Base Typography & Reset Atoms */

/* --- Industrial Layout Architecture --- */
#main-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
}

#main-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    position: relative;
}

.side-column {
    width: var(--rail-width);
    flex-shrink: 0;
    height: 100%;
}

.center-column {
    flex: 1;
    min-width: 0;
    height: 100%;
}

[class^="i-"] { display: flex; align-items: center; justify-content: center; }
[class^="i-"] svg { width: 100%; height: 100%; display: block; }

.hidden { display: none; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; left: 0; right: 0; bottom: 0; }

.no-select {
    user-select: none;
    -webkit-user-select: none;
}
