/**
 * Layout CSS
 * 
 * Dezentes, klares Layout ohne übertriebene Effekte
 */

.layout-header {
    height: 80px;
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.layout-content {
    flex: 1;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    background-color: var(--color-background);
    min-height: calc(100vh - 80px - 60px);
}

.layout-footer {
    background-color: var(--color-background);
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.04);
}

.layout-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-base);
    background-color: var(--color-background);
}
