﻿#tblData_info {
    display: none !important;
}
.dashboard {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 100%;
    height: 100vh
}
.dashboard .first-row {
    height: 35%;
    display: flex;
    gap: 20px;
}

.dashboard .first-row .card {
    width: 50%;
}

.dashboard .second-row {
    flex: 1;
    height: 65%;
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: stretch;
    min-height: 0;
}

.dashboard .second-row .left-side {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dashboard .second-row .right-side {
    flex: 0 1 35%;
    display: flex;
    height: 100%;
}

.dashboard .second-row .right-side .card-row {
    flex: 1;
    display: flex;
    min-height: 0;
    height: 100%;
}

.dashboard .second-row .right-side .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.dashboard .second-row .card-row {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 20px;
}

.dashboard .second-row .left-side .bill-overview,
.dashboard .second-row .left-side .consumption-overview {
    flex: 1;
    display: flex;
    gap: 20px;
    min-height: 0;
}

.dashboard .second-row .left-side .bill-overview .bill-doughnut,
.dashboard .second-row .left-side .consumption-overview .consumption-doughnut {
    flex: 0 0 30%;
    height: 100%;
}

.dashboard .second-row .left-side .bill-overview .bill-table,
.dashboard .second-row .left-side .consumption-overview .consumption-table {
    flex: 0 1 70%;
    height: 100%;
}
/* Small Desktop */
@media (max-width: 1440px) {
    .dashboard .second-row {
        flex-direction: column;
    }
}
/* Mobile Devices */
@media (max-width: 576px) {
    .dashboard {
        height: auto;
    }
    .dashboard .first-row {
        flex-direction: column;
        height: 900px;
        gap: 0;
    }
    .dashboard .first-row .card {
        width: 100%;
        height: 100%;
    }
    .dashboard .second-row {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .dashboard .second-row .left-side {
        gap: 0;
    }
    .dashboard .second-row .left-side .card-row{
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .dashboard .second-row .right-side {
        display: block;
        height: auto;
    }
}


