
/* === CORPORATE BUSINESS THEME === */
.biz-wrap {
    background: #f5f6fa;
    padding: 28px;
    border-radius: 12px;
    font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
}
.biz-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8eaf0;
}
.biz-dashboard-header h2 {
    font-size: 1.7em;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    letter-spacing: -0.3px;
}
.biz-dashboard-header .biz-date {
    color: #7c8db0;
    font-size: 0.85em;
}
.biz-card {
    background: #ffffff;
    border-radius: 10px;
    margin: 14px 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid #e8eaf0;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.biz-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d0d5e0;
}
.biz-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 10px;
}
.biz-project-name {
    font-size: 1.15em;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
}
.biz-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}
.biz-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.biz-status::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    display: inline-block;
}
.biz-status-planung { background: #eef0f5; color: #5a6785; }
.biz-status-planung::before { background: #5a6785; }
.biz-status-in-bearbeitung { background: #e8f4fd; color: #1a73e8; }
.biz-status-in-bearbeitung::before { background: #1a73e8; }
.biz-status-review { background: #fef3e2; color: #e67e22; }
.biz-status-review::before { background: #e67e22; }
.biz-status-abgeschlossen { background: #e6f9ee; color: #0d8a3f; }
.biz-status-abgeschlossen::before { background: #0d8a3f; }
.biz-status-pausiert { background: #fce8e8; color: #c0392b; }
.biz-status-pausiert::before { background: #c0392b; }
.biz-prio {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.biz-prio-niedrig { background: #e6f9ee; color: #0d8a3f; }
.biz-prio-mittel { background: #fef3e2; color: #e67e22; }
.biz-prio-hoch { background: #fce8e8; color: #c0392b; }
.biz-prio-kritisch { background: #c0392b; color: #fff; }
.biz-card-body {
    padding: 0 24px 16px;
    color: #4a5568;
    font-size: 0.9em;
    line-height: 1.65;
}
.biz-card-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    padding: 0;
    border-top: 1px solid #f0f1f5;
    background: #fafbfc;
}
.biz-meta-cell {
    padding: 14px 24px;
    border-right: 1px solid #f0f1f5;
}
.biz-meta-cell:last-child { border-right: none; }
.biz-meta-label {
    display: block;
    font-size: 0.68em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c8db0;
    font-weight: 600;
    margin-bottom: 4px;
}
.biz-meta-value {
    font-size: 0.9em;
    font-weight: 600;
    color: #2d3748;
}
.biz-progress-wrap {
    padding: 0 24px 18px;
}
.biz-progress-bar {
    height: 6px;
    background: #e8eaf0;
    border-radius: 3px;
    overflow: hidden;
}
.biz-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #1a73e8, #4a9af5);
    transition: width 0.5s ease;
}
.biz-progress-label {
    font-size: 0.75em;
    color: #7c8db0;
    margin-top: 5px;
    text-align: right;
}
