/**
 * ============================================
 * Dashboard Global Styles
 * Basis-Styles für das Dashboard-Layout
 * ============================================
 */

/* === GLOBAL STYLES === */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--md-bg, #FFFFFF);
    color: var(--md-text, #1A1F2E);
    margin: 0;
    padding: 0;
    padding-top: 110px; /* Header 1 (56px) + Header 2 (54px) */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* === MAIN CONTENT === */
#contentContainer {
    padding: 0;
    min-height: calc(100vh - 110px);
    transition: margin-left 0.3s ease;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    #contentContainer {
        padding: 0;
    }
}
