 /* Metric Cards - Auto height with consistent row heights */
    .vrc-metric-card {
        background: linear-gradient(135deg, #546e7a 0%, #37474f 100%);
        border-radius: 16px;
        padding: 20px 15px;
        margin-bottom: 20px;
        color: white;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 130px;
        height: 100%;
    }
    
    .vrc-metric-card:hover { 
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .vrc-metric-card::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        z-index: 0;
    }
    
    .vrc-metric-card::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 80px;
        height: 80px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        z-index: 0;
    }
    
    .vrc-metric-card .metric-icon { 
        font-size: 32px; 
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
        opacity: 0.9;
    }
    
    .vrc-metric-card h3 { 
        font-size: 28px; 
        font-weight: bold; 
        margin: 5px 0; 
        color: white;
        position: relative;
        z-index: 1;
        letter-spacing: 0.5px;
    }
    
    .vrc-metric-card p { 
        margin: 0; 
        font-size: 12px; 
        opacity: 0.85;
        position: relative;
        z-index: 1;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Make all cards in grid same height */
    .metric-grid-top,
    .metric-grid-bottom {
        display: grid;
        gap: 15px;
        width: 100%;
    }
    
    .metric-grid-top {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .metric-grid-bottom {
        grid-template-columns: repeat(6, 1fr);
    }
    
    /* Grid items should stretch to fill height */
    .metric-grid-top > *,
    .metric-grid-bottom > * {
        display: flex;
    }
    
    /* Notification Panel - Keep your style */
    .notification-panel {
        background: #fff;
        border-radius: 16px;
        padding: 0;
        border: 1px solid #e8ecf1;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .notification-list {
        flex: 1;
        padding: 5px 0;
    }
    
    .notification-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        border-bottom: 1px solid #f5f6f8;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .notification-item:hover {
        background: #f8f9fe;
        transform: translateX(3px);
    }
    
    .notification-item:last-child {
        border-bottom: none;
    }
    
    .notification-item .ni-content {
        flex: 1;
        min-width: 0;
    }
    
    .notification-item .ni-content .ni-title {
        font-size: 14px;
        font-weight: 600;
        color: #1a237e;
        margin: 0;
    }
    
    .notification-item .ni-count {
        background: #1a237e;
        color: white;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 14px;
        font-weight: bold;
        min-width: 30px;
        text-align: center;
        margin-left: 15px;
        flex-shrink: 0;
    }
    
    .fieldsetcontainer {
        background: #fff;
        border-radius: 16px;
        border: 1px solid #e8ecf1;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .fieldsetcontainer legend {
        font-size: 15px;
        font-weight: 600;
        color: #1a237e;
        padding: 0 10px;
        border-bottom: 2px solid #fcb900;
        width: auto;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    .chart-container {
        background: white;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 25px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        border: 1px solid #e8e8e8;
        transition: box-shadow 0.3s ease;
    }
    
    .chart-container:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .chart-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 3px solid #fcb900;
        display: inline-block;
    }
    
    .dashboard-metric-row {
        margin-bottom: 10px;
    }
    
    /* Fix for fieldset inside column */
    .col-md-4 {
        display: flex;
        flex-direction: column;
    }
    
    .col-md-4 > .fieldsetcontainer {
        flex: 1;
    }
    
    @media (max-width: 1200px) {
        .metric-grid-top { grid-template-columns: repeat(4, 1fr); }
        .metric-grid-bottom { grid-template-columns: repeat(3, 1fr); }
    }
    
    @media (max-width: 992px) {
        .notification-panel {
            min-height: auto;
        }
        .notification-list {
            max-height: 250px;
            overflow-y: auto;
        }
        .col-md-4 {
            margin-top: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .metric-grid-top { grid-template-columns: repeat(2, 1fr); }
        .metric-grid-bottom { grid-template-columns: repeat(2, 1fr); }
        .vrc-metric-card { min-height: 110px; padding: 15px 10px; }
        .vrc-metric-card h3 { font-size: 22px; }
        .vrc-metric-card .metric-icon { font-size: 24px; }
        .notification-item .ni-count {
            font-size: 12px;
            padding: 3px 8px;
            min-width: 25px;
        }
    }
    
    @media (max-width: 480px) {
        .metric-grid-top,
        .metric-grid-bottom { grid-template-columns: 1fr; }
        .vrc-metric-card { min-height: 100px; }
        .vrc-metric-card h3 { font-size: 20px; }
        .vrc-metric-card p { font-size: 11px; }
    }