/* =========================================================
   PROFIT ANALYSIS - COMPACT
========================================================= */


/* =========================================================
   MAIN GRID
========================================================= */

.profit-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 260px;

    gap: 14px;

    margin-top: 14px;

    align-items: stretch;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   CHART PANEL
========================================================= */

.profit-chart-panel {
    background: #1E293B;

    border: 1px solid #334155;

    border-radius: 12px;

    padding: 16px;

    width: 100%;

    min-width: 0;

    max-width: 100%;

    overflow: hidden;
}


/* =========================================================
   PANEL TITLE
========================================================= */

.profit-chart-panel .panel-title {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #F8FAFC;
}


.profit-chart-panel .panel-title i {
    font-size: 13px;
}


/* =========================================================
   CHART
========================================================= */

#profitChart {
    width: 100%;

    height: 260px;

    min-height: 260px;

    min-width: 0;
}


/* ApexCharts / chart container */

.profit-chart-panel .apexcharts-canvas,
.profit-chart-panel .apexcharts-svg {
    max-width: 100% !important;
}


/* =========================================================
   SUMMARY
========================================================= */

.profit-summary {
    display: flex;

    flex-direction: column;

    gap: 10px;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   PROFIT CARD
========================================================= */

.profit-card {
    background: #1E293B;

    border: 1px solid #334155;

    border-left: 3px solid;

    border-radius: 11px;

    padding: 12px 14px;

    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* =========================================================
   CARD COLOR
========================================================= */

.profit-card.success {
    border-left-color: #22C55E;
}

.profit-card.primary {
    border-left-color: #3B82F6;
}

.profit-card.purple {
    border-left-color: #8B5CF6;
}

.profit-card.warning {
    border-left-color: #F59E0B;
}


/* =========================================================
   LABEL
========================================================= */

.profit-card span {
    display: block;

    color: #94A3B8;

    margin-bottom: 4px;

    font-size: 11px;

    line-height: 1.3;
}


/* =========================================================
   VALUE
========================================================= */

.profit-card strong {
    display: block;

    color: #F8FAFC;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 3px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.profit-card small {
    display: block;

    color: #64748B;

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================================
   COMING SOON
========================================================= */

.profit-card strong .fa-clock,
.profit-card strong i {
    font-size: 16px;

    margin-right: 4px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .profit-grid {
        grid-template-columns: minmax(0, 1fr) 230px;
    }

    .profit-card strong {
        font-size: 17px;
    }

}


@media (max-width: 992px) {

    .profit-grid {
        grid-template-columns: 1fr;
    }

    .profit-summary {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .profit-card {
        min-height: 90px;
    }

}


@media (max-width: 768px) {

    .profit-grid {
        gap: 10px;

        margin-top: 10px;
    }

    .profit-chart-panel {
        padding: 12px;
    }

    #profitChart {
        height: 220px;

        min-height: 220px;
    }

    .profit-card {
        padding: 10px 12px;
    }

}


@media (max-width: 576px) {

    .profit-summary {
        grid-template-columns: 1fr;
    }

    .profit-card strong {
        font-size: 16px;
    }

}