:root {
    --PieCharts-chart-height: 730px;
    --dashboard-chart-min-height: 350px;
    --faculty-pie-height: 600px;
}

/* existing styles kept (no change) */
@media (max-width:800px) {
    .year-sep {
        display: block;
        visibility: hidden;
        height: 0;
    }
}

.wrap-text {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    vertical-align: top;
}

.owner-wrap {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* =========================
   PAGE HEADER
========================= */

.page-header {
    background: #f8f9fa;
    padding: 16px;
    border: 1px solid #dee2e6;
    border-bottom: 3px solid #007bff;
    border-radius: 18px;
    margin-bottom: 18px;
}

    .page-header h1 {
        font-size: 22px;
        margin: 0;
        text-align: center;
        font-weight: 700;
        color: #343a40;
        letter-spacing: .2px;
        position: relative;
        z-index: 1;
    }

.control-panel {
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 1px 4px rgba(16,24,40,.05);
    border: 1px solid #e9ecef;
}

.gx-3 {
    --bs-gutter-x: 1.3rem;
}

.gy-3 {
    --bs-gutter-y: 1.3rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg,#ffffff,#f8fff8);
    border-radius: 18px;
    padding: 4px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    border-left: 4px solid #28a745;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    min-height: 34px;
}

.dashboard-content {
    display: block;
    width: 100%;
    margin: 10px 0 20px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.header-left {
    flex: 1;
}

.header-title {
    font-size: 22px;
    font-weight: 700;
    color: #155724;
    margin-bottom: 6px;
    line-height: 1.2;
}

.header-info {
    font-size: 14px;
    line-height: 1.45;
}

    .header-info > div {
        margin-bottom: 2px;
    }

        .header-info > div:last-child {
            margin-bottom: 0;
        }

.title-label {
    display: inline-block;
    width: 145px;
    color: #666;
    font-weight: 600;
}

.report-scope {
    margin-top: 12px;
    font-size: 15px;
    font-weight: bold;
    color: #0069d9;
}

.report-period {
    font-size: 15px;
    color: cadetblue;
    width: 100%;
    margin-top: 4px;
    padding: 10px 14px;
    font-weight: 600;
    line-height: 1.7;
    white-space: normal;
}

.header-right {
    display: flex;
    gap: 6px;
    align-items: center;
    align-self: center;
    justify-content: center;
}

    .header-right .btn {
        padding: 4px 10px;
        font-size: 13px;
    }

/* =========================
   KPI DASHBOARD
========================= */

.energy-dashboard {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    overflow: hidden;
}

.kpi-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.kpi-card {
    flex: 1 1 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 100%;
    min-height: 92px;
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    padding: 7px 5px;
    box-sizing: border-box;
    text-align: center;
    transition: .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .kpi-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

.kpi-icon {
    width: 32px;
    height: 32px;
    font-size: 17px;
    margin: 0 auto 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-title {
    font-size: 11.5px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.kpi-value {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

    .kpi-value small {
        font-size: 10px;
        color: #888;
    }

/* Desktop */

@media (min-width:1201px) {
    .kpi-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px;
    }

    .kpi-card {
        flex: 1 1 0 !important;
        width: 0 !important;
    }
}

/* Laptop */

@media (max-width:1200px) {
    .kpi-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px;
    }

    .kpi-card {
        flex: 0 0 calc(25% - 6px) !important;
        width: calc(25% - 6px) !important;
    }
}

/* Tablet */

@media (max-width:768px) {
    .kpi-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px;
    }

    .kpi-card {
        flex: 0 0 calc(50% - 3px) !important;
        width: calc(50% - 3px) !important;
        min-height: 85px;
        padding: 6px 5px;
    }

    .kpi-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-bottom: 4px;
    }

    .kpi-title {
        font-size: 11px;
    }

    .kpi-value {
        font-size: 16px;
    }
}

/* Mobile */

@media (max-width:480px) {
    .kpi-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px;
    }

    .kpi-card {
        flex: 0 0 calc(50% - 2.5px) !important;
        width: calc(50% - 2.5px) !important;
        min-height: 75px;
        padding: 5px 4px;
        border-radius: 10px;
    }

    .kpi-icon {
        width: 27px;
        height: 27px;
        font-size: 14px;
        margin-bottom: 3px;
    }

    .kpi-title {
        font-size: 10px;
    }

    .kpi-value {
        font-size: 14px;
    }

        .kpi-value small {
            font-size: 9px;
        }
}

.bg-success-subtle {
    background: #E8F5E9;
    color: #2E7D32;
}

.bg-warning-subtle {
    background: #FFF8E1;
    color: #F9A825;
}

.bg-danger-subtle {
    background: #FDECEC;
    color: #D32F2F;
}

.bg-info-subtle {
    background: #E3F2FD;
    color: #0288D1;
}

.bg-light {
    background: #F5F5F5;
    color: #666;
}

/* =========================
   CARD
========================= */

.card {
    border: 1px solid #E6ECEF;
    border-radius: 18px !important;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.04),0 8px 20px rgba(0,0,0,.03);
    transition: .25s;
    overflow: hidden;
}

.grid-card {
    min-height: 435px;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.card.chart-box {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; /* ensure cards fill column height equally */
    /*height: 100%;*/
}

.card-header {
    background: #f4fbf6;
    border-bottom: 1px solid #dceee1;
    color: #166534;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
}

/* =========================
   CHART
========================= */

.chart-area {
    flex: 0 0 auto;
    padding: 12px 18px;
    height: var(--dashboard-chart-height);
    box-sizing: border-box;
    overflow: hidden;
}

.chart-box {
    width: 100%;
    min-height: var(--dashboard-chart-min-height);
    display: flex;
    flex-direction: column;
}

    .chart-box .card-body {
        padding: 8px;
        box-sizing: border-box;
        height: auto;
    }

    .chart-box::after {
        content: "";
        flex: 1;
    }

.fusion-chart-box {
    width: 100%;
    min-height: var(--dashboard-chart-min-height);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fusioncharts-container {
    width: 100% !important;
}

#chartMain,
#chartMain > div,
#chartMain svg {
    width: 100% !important;
    height: 100% !important;
}

#chartMain {
    width: 100%;
    height: 100%;
}

.energy-legend-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 10px;
}

    .energy-legend-row:last-child {
        border-bottom: none;
    }

.energy-dashboard .col {
    transition: .2s;
}

    .energy-dashboard .col:hover {
        background: #f8fbff;
    }

.energy-building {
    display: flex;
    align-items: center;
    gap: 8px;
}

.energy-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.energy-value {
    font-weight: 600;
    color: #388E3C;
}

.chart-tooltip {
    position: absolute;
    z-index: 9999;
    background: #222;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    pointer-events: none;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

/* =========================
   BUTTON
========================= */

.btn-electric {
    width: 35px;
    height: 35px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

/* =========================
   CHART TOOLBAR
========================= */

.chart-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.chart-toolbar-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    background: #f8f9fa;
    border: 1px solid #e3e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.chart-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 82px;
    height: 36px;
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .15s ease;
}

    .chart-control-btn .btn-icon {
        font-size: 15px;
        line-height: 1;
    }

    .chart-control-btn .btn-text {
        line-height: 1;
    }

    .chart-control-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(0,0,0,.10);
    }

    .chart-control-btn.btn-reset {
        color: #495057;
        border-color: #d9dee3;
    }

        .chart-control-btn.btn-reset:hover {
            background: #f1f3f5;
            border-color: #adb5bd;
        }

    .chart-control-btn.btn-kwh {
        color: #2e7d32;
        border-color: #a5d6a7;
    }

        .chart-control-btn.btn-kwh:hover {
            background: #e8f5e9;
            border-color: #81c784;
        }

    .chart-control-btn.btn-bath {
        color: #9a6700;
        border-color: #f0d58a;
    }

        .chart-control-btn.btn-bath:hover {
            background: #fff8e1;
            border-color: #e6c65c;
        }

    .chart-control-btn.active {
        box-shadow: inset 0 0 0 1px currentColor;
    }

@media (max-width:576px) {
    .chart-toolbar {
        justify-content: center;
    }

    .chart-toolbar-inner {
        width: 100%;
        justify-content: center;
    }

    .chart-control-btn {
        flex: 1;
        min-width: 0;
        padding: 6px 8px;
    }

        .chart-control-btn .btn-text {
            font-size: 13px;
        }
}

/* =========================
   GRIDVIEW
========================= */

.grid-scroll {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: auto !important;
    overflow-y: visible !important;
    position: relative;
    padding-left: 8px !important;
    padding-right: 8px !important;
    -webkit-overflow-scrolling: touch;
}

.grid-electric {
    width: max-content !important;
    min-width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    table-layout: fixed !important;
    border-collapse: separate;
    border-spacing: 0;
}

    .grid-electric thead {
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .grid-electric th {
        position: sticky;
        top: 0;
        z-index: 20;
        background: #A5D6A7;
        color: #343a40;
        font-size: 10px;
        font-weight: 600;
        text-align: center;
        white-space: normal;
        padding: 2px 3px;
        line-height: 1.15;
        border: 1px solid #d5e7d5;
        box-shadow: 0 1px 3px rgba(0,0,0,.12);
        overflow: hidden;
    }

    .grid-electric td {
        font-size: 11px;
        padding: 2px 4px;
        line-height: 1.2;
        vertical-align: middle !important;
        border: 1px solid #ececec;
        background: #fff;
        overflow: hidden;
    }

    .grid-electric tbody tr:nth-child(even) td {
        background: #F8FCF8;
    }

    .grid-electric tbody tr:hover td {
        background: #E8F5E9;
    }

    .grid-electric th:first-child,
    .grid-electric td:first-child {
        text-align: center;
    }

    .grid-electric td:not(:first-child) {
        white-space: nowrap;
    }

    .grid-electric .grid-number {
        display: block;
        width: 100%;
        text-align: right;
        white-space: nowrap;
        font-size: 10px;
        font-variant-numeric: tabular-nums;
    }

    .grid-electric .owner-wrap {
        display: block;
        width: 100%;
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        line-height: 1.25;
        font-size: 11px;
        text-align: left;
    }

    .grid-electric .grid-unit-header {
        display: block;
        text-align: center;
        white-space: nowrap;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.15;
    }

    .grid-electric small {
        color: #666;
        font-size: 9px;
    }

    .grid-electric tbody tr:last-child td:first-child {
        font-weight: 700;
    }

/* =========================
   CAMPUS SUMMARY
========================= */

.campus-summary-row {
    align-items: stretch;
}

    .campus-summary-row > [class*="col-"] {
        display: flex;
    }

.campus-chart-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .campus-chart-card .chart-area {
        min-height: var(--dashboard-chart-height);
        height: var(--dashboard-chart-height);
        padding: 10px 14px 15px 14px;
        overflow: visible;
    }

        .campus-chart-card .chart-area > div {
            width: 100%;
            height: var(--dashboard-chart-height);
        }

        .campus-chart-card .chart-area + .card-body {
            margin-top: 12px;
        }

.campus-table-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    overflow: visible !important;
}

.grid-section-header {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-weight: 600;
    border-top: 1px solid #e5e7eb;
}

.campus-chart-card .grid-area {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 8px;
    height: auto !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
}

/* rest of file unchanged, with consistent heights applied where appropriate */

.card-body {
    padding: 10px;
}

.grid-area {
    flex: 0 0 auto;
    max-height: calc(var(--dashboard-chart-height) + 20px);
    overflow-y: auto;
    padding: 8px;
}

/* =========================
   CAMPUS1 GRIDVIEW
   ========================= */

/* =========================
   CAMPUS1 GRIDVIEW
========================= */

.grid-campus1 {
    width: 1215px !important;
    min-width: 1215px !important;
    max-width: none !important;
    table-layout: fixed !important;
    box-sizing: border-box !important;
}

    .grid-campus1 th,
    .grid-campus1 td {
        box-sizing: border-box !important;
    }

        .grid-campus1 th:nth-child(1),
        .grid-campus1 td:nth-child(1) {
            width: 45px !important;
        }

        .grid-campus1 th:nth-child(2),
        .grid-campus1 td:nth-child(2) {
            width: 500px !important;
            min-width: 500px !important;
            max-width: 500px !important;
            white-space: normal !important;
            overflow: visible !important;
        }

        .grid-campus1 th:nth-child(3),
        .grid-campus1 td:nth-child(3) {
            width: 80px !important;
        }

        .grid-campus1 th:nth-child(4),
        .grid-campus1 td:nth-child(4),
        .grid-campus1 th:nth-child(5),
        .grid-campus1 td:nth-child(5),
        .grid-campus1 th:nth-child(6),
        .grid-campus1 td:nth-child(6),
        .grid-campus1 th:nth-child(7),
        .grid-campus1 td:nth-child(7),
        .grid-campus1 th:nth-child(8),
        .grid-campus1 td:nth-child(8) {
            width: 100px !important;
        }

        .grid-campus1 th:nth-child(9),
        .grid-campus1 td:nth-child(9) {
            width: 90px !important;
        }

    .grid-campus1 .grid-owner-header,
    .grid-campus1 .grid-owner {
        width: 500px !important;
        min-width: 500px !important;
        max-width: 500px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }

    .grid-campus1 .owner-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        line-height: 1.25;
        font-size: 11px;
        text-align: left;
    }

/* =========================
   MOBILE GRID
========================= */

@media (max-width:768px) {
    .grid-scroll {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
    }

    .grid-electric {
        min-width: 650px;
    }

        .grid-electric th {
            font-size: 13px;
        }

        .grid-electric td {
            font-size: 13px;
        }

        .grid-electric .grid-number {
            font-size: 13px;
        }

    .grid-campus1 {
        width: 1215px !important;
        min-width: 1215px !important;
        max-width: none !important;
        table-layout: fixed !important;
    }

        .grid-campus1 th:nth-child(2),
        .grid-campus1 td:nth-child(2),
        .grid-campus1 .grid-owner-header,
        .grid-campus1 .grid-owner {
            width: 500px !important;
            min-width: 500px !important;
            max-width: 500px !important;
        }
}
.grid-electric.grid-campus1 {
    width: 100% !important; 
    max-width: none !important;
    table-layout: fixed !important;
}
@media (max-width:480px) {
    .grid-campus1 {
        width: 100% !important;
        max-width: none !important;
        max-width: none !important;
    }
}
/* =========================
   MOBILE GRID
========================= */

@media (max-width:768px) {
    .grid-scroll {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
    }

    .grid-electric {
        min-width: 650px;
    }

        .grid-electric th {
            font-size: 13px;
        }

        .grid-electric td {
            font-size: 13px;
        }

        .grid-electric .grid-number {
            font-size: 13px;
        }

    .grid-campus1 {
        width: 100% !important;
        max-width: none !important;
        table-layout: fixed !important;
    }
}

/* =========================
   MAP
========================= */

.leaflet-control-layers {
    font-size: 15px;
    line-height: 1.8;
}

    .leaflet-control-layers label {
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
    }

.leaflet-control-layers-list {
    padding: 8px;
}

.leaflet-control-layers-base,
.leaflet-control-layers-overlays {
    margin-bottom: 8px;
}

.leaflet-control-layers-separator {
    margin: 8px 0;
}

.leaflet-control-buildingsearch {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#map {
    width: 100%;
    height: 700px;
}

    #map.card-body {
        padding: 0;
    }

    #map .leaflet-control-search .search-input {
        width: 320px !important;
        height: 42px !important;
        font-size: 16px !important;
        padding: 8px 12px;
        border-radius: 8px;
    }

#searchDiv {
    font-size: 13px;
}

    #searchDiv label {
        font-size: 12px;
        margin-bottom: 3px;
        font-weight: 600;
    }

    #searchDiv .form-control {
        height: 32px;
        padding: 4px 8px;
        font-size: 13px;
    }

    #searchDiv .btn {
        height: 32px;
        padding: 4px 10px;
        font-size: 13px;
    }

    #searchDiv .mb-3 {
        margin-bottom: 8px !important;
    }

    #searchDiv .card-header {
        padding: 8px 12px;
        font-size: 14px;
        font-weight: 600;
    }

    #searchDiv .card-body {
        padding: 12px;
    }

    #searchDiv hr {
        margin: 8px 0;
    }

/* =========================
   FACULTY PIE CHART
========================= */

.fac-pie-wrapper {
    width: 100%;
    height: var(--faculty-pie-height);
}

.fac-pie-chart {
    width: 100%;
    height: 100%;
}
.faculty-chart-area {
    padding: 10px;
}

.faculty-chart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
}

.faculty-chart-item {
    width: 100%;
    min-width: 0;
}

    .faculty-chart-item > div {
        width: 100% !important;
        height: var(--dashboard-chart-min-height) !important;
    }

.faculty-chart-grid [id^="chart_"] {
    width: 100% !important;
    height: var(--dashboard-chart-height) !important;
}

@media (max-width: 991.98px) {
    .faculty-chart-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width:1199px) {
    .fac-pie-wrapper {
        height: 600px;
    }
}

@media (max-width:991px) {
    .fac-pie-wrapper {
        height: 600px;
    }
}

@media (max-width:575px) {
    .fac-pie-wrapper {
        height: 500px;
    }
}
/* =========================
   gvMapData SCROLL
========================= */
.campus-table-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden !important;
}

    .campus-table-section .grid-area {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 8px !important;
        overflow: hidden !important;
        box-sizing: border-box;
    }

    .campus-table-section .grid-scroll {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
    }

    .campus-table-section .grid-electric {
        width: max-content !important;
        min-width: 100% !important;
        max-width: none !important;
        table-layout: fixed !important;
    }

@media (max-width:768px) {
    .campus-table-section .grid-electric {
        min-width: 900px !important;
    }
}
.faculty-grid-scroll {
    width: 100%;
    max-width: 100%;
    max-height: calc(var(--dashboard-chart-height) + 20px);
    overflow: auto;
    display: block;
}

    .faculty-grid-scroll .grid-electric {
        width: max-content;
        min-width: 950px;
        table-layout: fixed !important;
    }
/* Faculty Chart.js : จำกัดกราฟให้อยู่ภายใน Chart Area */
.chart-box .card-body.chart-area {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden !important;
}

.chart-area .faculty-chart-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
}

.chart-area .faculty-chart-inner {
    position: relative;
    width: max-content;
    min-width: 100%;
    height: 550px;
    box-sizing: border-box;
}

    .chart-area .faculty-chart-inner canvas {
        display: block;
        max-width: none !important;
    }
#chartPh2Kwh,
#chartPh2Bath,
#chartPh2Year {
    min-height: 430px;
    height: 430px;
}

    #chartPh2Kwh > div,
    #chartPh2Bath > div,
    #chartPh2Year > div {
        width: 100% !important;
        height: 100% !important;
    }
#paMainChartNew .chart-box {
    width: 100%;
    height: 100%;
}

#paMainChartNew .card-body.chart-area {
    min-height: 430px;
}
#mapPieTotalContainer {
    height: 730px !important;
    min-height: 730px !important;
    max-height: 730px !important;
    width: 100% !important;
    overflow: hidden !important;
}
