/* ==========================================
   STRUCTURA GENERALĂ A APLICAȚIEI
========================================== */

.app-shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.app-main {
    display: flex;
    flex: 1;
    overflow: hidden;
}

#app-content {
    flex: 1;
    overflow: auto;
    padding: 24px;
    background: var(--bg-surface);
}
