/**
 * header.css – Stile für den Kopfbereich
 */

#app-header {
    background: linear-gradient(135deg, #d4e9f7 0%, #8fc8e8 100%);
    padding: 6px 16px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#app-header h1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0;
}

#app-header .subtitle {
    font-size: 0.7rem;
    color: #2c5a6a;
    margin: 0;
}

.header-badge {
    font-size: 0.85rem;
    color: #1a3a4a;
    background: rgba(255,255,255,0.6);
    padding: 2px 12px;
    border-radius: 20px;
    display: none;
}

.header-badge.clickable {
    cursor: pointer;
    border: 1px solid #b0c8d8;
    transition: all 0.2s;
}

.header-badge.clickable:hover {
    background: rgba(255,255,255,0.9);
    border-color: #4a7a9a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-right select,
.header-right label {
    font-size: 0.8rem;
    color: #1a3a4a;
}

.header-right select {
    padding: 2px 6px;
    border: 1px solid #b0c8d8;
    border-radius: 3px;
    background: #f8fcff;
}