/* Table Container Styles */
.mpc-table-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.mpc-table-scroll {
    overflow-x: auto;
    margin: 20px 0;
}

/* Table Styles */
.mpc-performance-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 12px;
}
.mpc-performance-table th{
    background-color:#E5E5E5 !important
}
.mpc-performance-table th,
.mpc-performance-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.mpc-performance-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Year Cell Styling */
.year-cell {
    background-color: #f8f9fa;
    font-weight: bold;
    vertical-align: middle;
}

/* Row Styling */
.mb-row td {
    background-color: #ffffff;
}

.spy-row td {
    background-color: #f8f9fa;
}

/* Negative Values */
.negative {
    color: #dc3545;
}
/* Positive Values */
.positive {
    color: green;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .mpc-performance-table {
        font-size: 12px;
    }
    
    .mpc-performance-table th,
    .mpc-performance-table td {
        padding: 4px;
    }
}

/* Hover Effects */
.mpc-performance-table tbody tr:hover td {
    background-color: #f5f5f5;
}

/* Table Header */
.mpc-performance-table thead th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1;
}

/* Monthly Values */
.mb-row td:not(.year-cell),
.spy-row td {
    min-width: 80px;
    font-size: 12px;}

/* YTD Column */
.mpc-performance-table th:last-child,
.mpc-performance-table td:last-child {
    background-color: #f8f9fa;
    font-weight: bold;
}