/* Gemeinsame Basisstyles für alle Seiten des Dashboards */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 12px;
    color: #333;
}

/* Breadcrumb-Navigation (wird von topbar.php eingebunden) */
.breadcrumb {
    background: white;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    font-size: 0.85em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.breadcrumb a:hover { text-decoration: underline; }

/* Abmelden-Link in der Topbar */
.logout-link {
    font-size: 0.85em;
    color: #bbb;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    white-space: nowrap;
}

/* Allgemeine Zustandsmeldungen */
.loading { text-align: center; padding: 30px; color: #999; }
.empty-message { text-align: center; color: #999; }
