/* Global Reset & Base Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
}

/* Top Header Bar */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    border-bottom: 3px solid #1a252f;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Status Matrix Section (Orange Banner) */
.status-matrix-banner {
    display: flex;
    justify-content: space-between;
    background-color: #f39c12;
    padding: 15px;
    color: #fff;
    font-weight: bold;
}

.matrix-box, .totals-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 4px;
    width: 31%;
}

/* Navigation & Action Bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #bdc3c7;
    padding: 10px 15px;
}

.action-btn {
    background-color: #ecf0f1;
    border: 1px solid #7f8c8d;
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.8rem;
}

.action-btn:hover {
    background-color: #d0d7d9;
}

/* Main Content Grid Panels */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.panel-card {
    background-color: #e2e8f0;
    border: 2px solid #cbd5e1;
    height: 150px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
}