﻿.dashboard-container {
    padding: 15px;
    background: #f4f6f8;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.kpi {
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
}

    .kpi h1 {
        margin: 5px 0 0;
    }

.yellow {
    background: #ffe94d;
}

.blue {
    background: #00a3e0;
    color: #fff;
}

.teal {
    background: #1abc9c;
    color: #fff;
}

.light-blue {
    background: #9bd3e3;
}

.orange {
    background: #ff9966;
}

.green {
    background: #2e8b57;
    color: #fff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 2fr;
    gap: 15px;
    margin-bottom: 15px;
}

.card {
    background: #fff;
    padding: 12px;
    border-radius: 4px;
    height: 280px;
    position: relative;
}

    .card canvas {
        height: 220px !important;
    }

.map-placeholder {
    height: 220px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
}

    .projects-table th,
    .projects-table td {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }
.projects-card {
    height: auto;
}

.mastt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .mastt-table th {
        text-align: left;
        font-weight: 600;
        padding: 8px;
        border-bottom: 2px solid #e0e0e0;
        white-space: nowrap;
    }

    .mastt-table td {
        padding: 8px;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }

    .mastt-table .sub {
        color: #666;
        font-size: 12px;
    }

.progress {
    background: #e6e6e6;
    height: 6px;
    border-radius: 3px;
    width: 100%;
}

.progress-bar {
    height: 6px;
    background: #1abc9c;
    border-radius: 3px;
}

.health-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

    .health-dot.green {
        background: #2ecc71;
    }

    .health-dot.amber {
        background: #f39c12;
    }

    .health-dot.red {
        background: #e74c3c;
    }


