﻿
/*.data-stripe-container {
    background: #ffffff;
    border-right: 1px solid #eef2f6;
    height: 100%;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stripe-header {
    margin-bottom: 5px;
    padding-left: 5px;
}

.live-tag {
    font-size: 10px;
    font-weight: 800;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
}

.pulse {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: shadow-pulse 1.5s infinite;
}*/

/* Metric Row Base */
/*.metric-row {
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

    .metric-row:hover {
        background: #fff;
        border-color: #e2e8f0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

.m-info {
    flex-grow: 1;
}

.m-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
}

.m-value {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    display: block;
}

.metric-row i {
    font-size: 18px;
    opacity: 0.2;
}*/

/* Efficiency & Satisfaction Inline Bars */
/*.m-label-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6px;
}

.m-perc {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
}

.mini-progress-bg {
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    border-radius: 10px;
}*/

/* Color Accents */
/*.blue {
    border-left: 3px solid #3b82f6;
}

.purple {
    border-left: 3px solid #8b5cf6;
}

.green {
    border-left: 3px solid #10b981;
}

    .green .mini-progress-fill {
        background: #10b981;
    }

.teal {
    border-left: 3px solid #14b8a6;
}

    .teal .mini-progress-fill {
        background: #14b8a6;
    }

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}*/

/* Layout for Number + Percentage Badge */
/*.m-data-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;*/ /* Space between data and progress bar */
/*}*/

/* Primary Big Number */
/*.m-value {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}*/

/* Modern Badge / Pill for Percentage */
/*.m-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}*/

/* Green Color Theme for Efficiency */
/*.badge-green {
    background-color: #ecfdf5;
    color: #10b981;
}*/

/* Teal Color Theme for Satisfaction */
/*.badge-teal {
    background-color: #f0fdfa;
    color: #0d9488;
}*/

/* Progress Bar Refinements */
/*.mini-progress-bg {
    height: 4px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.green .mini-progress-fill {
    background: #10b981;
}

.teal .mini-progress-fill {
    background: #14b8a6;
}*/


.data-stripe-container {
    background: #ffffff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-row {
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #cbd5e1; /* Default accent */
    transition: all 0.2s ease;
}

.m-info {
    flex-grow: 1;
}

.m-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    /*text-transform: uppercase;*/
    color: #64748b;
    margin-bottom: 5px;
}

.m-value {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

/* Dual Data Alignment */
.m-data-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.m-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Color Themes */
.blue {
    border-left-color: #3b82f6;
}

.purple {
    border-left-color: #a855f7;
}

.indigo {
    border-left-color: #6366f1;
    background-color: #f5f3ff;
}
/* New Color */
.green {
    border-left-color: #22c55e;
}

.teal {
    border-left-color: #14b8a6;
}

/* Progress Bars */
.mini-progress-bg {
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    border-radius: 10px;
}

.green .mini-progress-fill {
    background: #22c55e;
}

.teal .mini-progress-fill {
    background: #14b8a6;
}

/* Badge Colors */
.badge-green {
    background: #dcfce7;
    color: #15803d;
}

.badge-teal {
    background: #f0fdfa;
    color: #0f766e;
}

.metric-row i {
    font-size: 16px;
    opacity: 0.3;
    color: #64748b;
}

/* Navy - Anchor */
.navy {
    border-left-color: #0f172a !important;
    background: #f1f5f9;
}

    .navy .m-value {
        color: #0f172a;
    }

/* Amber - Live/Attention */
.amber {
    border-left-color: #f59e0b !important;
    background: #fffbeb;
}

    .amber .m-value {
        color: #b45309;
    }

    .amber i {
        color: #f59e0b;
        opacity: 0.6 !important;
    }

/* Royal Blue - Completed Task */
.royal-blue {
    border-left-color: #2563eb !important;
    background: #eff6ff;
}

    .royal-blue .m-value {
        color: #1e40af;
    }

/* Keep Green & Teal as they were for Success metrics */