/* Layout Grid and Structure Styles */

body {
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    height: 100vh;
    /* Fallback for older browsers */
    height: 100dvh;
    /* Modern browsers with dynamic viewport */
    height: calc(var(--vh, 1vh) * 100);
    /* Custom property */
    max-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 0 !important;
}