:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --primary-color: #004b87;
    --primary-glow: rgba(0, 75, 135, 0.1);
    --secondary-color: #0284c7;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --success-color: #10b981;
    --warning-color: #ef4444;
    --font-sans: 'Montserrat', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    padding: 2rem 1rem;
    background-image: 
        radial-gradient(at 0% 0%, rgba(2, 132, 199, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 75, 135, 0.03) 0px, transparent 50%);
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.electric-bolt {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 75, 135, 0.2));
}

header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #0f172a 40%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header h1 span {
    color: var(--primary-color);
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Stiluri Utilitare Card */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px 0 rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: rgba(0, 75, 135, 0.2);
    box-shadow: 0 8px 30px 0 rgba(0, 75, 135, 0.06);
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Config Sheets Card */
.config-card {
    margin-bottom: 2rem;
}

.config-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
}

input[type="text"] {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.2s;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Butoane */
.btn {
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.25);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(2, 132, 199, 0.35);
}

.secondary-btn {
    background: #ffffff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.secondary-btn:hover {
    background: #f1f5f9;
    border-color: var(--text-muted);
}

/* Upload cards layout */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.upload-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 1rem;
    cursor: pointer;
    position: relative;
    border-style: dashed;
    border-width: 2px;
}

.upload-card:hover {
    border-color: var(--primary-color);
    background: rgba(0, 242, 254, 0.02);
}

.upload-card.dragover {
    border-color: var(--primary-color);
    background: var(--primary-glow);
}

.upload-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

.upload-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.upload-card p {
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
}

.file-input {
    display: none;
}

.file-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.upload-card.loaded {
    border-style: solid;
    border-color: var(--success-color);
}

.upload-card.loaded .file-status {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

/* Sectiunea actiuni detectie */
.action-card {
    margin-bottom: 2rem;
}

.action-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-header h2 span {
    color: var(--primary-color);
    text-shadow: none;
}

/* Month selector dropdown */
.month-select {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
    text-shadow: none;
}

.month-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.month-select option {
    background: #ffffff;
    color: var(--text-color);
    font-weight: normal;
}

#files-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats dashboard */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.success-value {
    color: var(--success-color);
    text-shadow: none;
}

.warning-value {
    color: var(--warning-color);
    text-shadow: none;
}

/* Details columns grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .grid-2, .historical-charts-grid {
        grid-template-columns: 1fr !important;
    }
    .input-group {
        flex-direction: column;
    }
}

.details-card h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.table-container {
    max-height: 350px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    color: var(--text-muted);
    font-weight: 600;
}

tbody tr:hover {
    background: rgba(0, 75, 135, 0.02);
}

/* Sheets action alert */
.sheets-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(0, 75, 135, 0.05) 100%);
    border-color: rgba(0, 75, 135, 0.15);
    margin-bottom: 2rem;
}

.sheets-info h3 {
    margin-bottom: 0.25rem;
}

.sheets-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal loader styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-color);
}

.spinner {
    border: 4px solid rgba(0, 75, 135, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-left-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
    box-shadow: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Status classes */
.status-msg {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-msg.success { color: var(--success-color); }
.status-msg.error { color: var(--warning-color); }

/* Animatii */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 4px 14px 0 rgba(0, 242, 254, 0.3);
    }
    to {
        box-shadow: 0 4px 25px 0 rgba(0, 242, 254, 0.6);
    }
}

/* Car Silhouettes and Blog Report CSS */
.car-silhouette {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0.85;
    stroke: var(--primary-color);
    stroke-width: 1.75;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.2s ease;
}

tr:hover .car-silhouette {
    transform: translateX(2px) scale(1.05);
    opacity: 1;
}

.blog-report-card {
    border-color: rgba(2, 132, 199, 0.2);
}

.blog-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--primary-glow);
    color: var(--primary-color);
    box-shadow: none;
}

.tab-btn:hover:not(.active) {
    color: var(--primary-color);
    background: rgba(0, 75, 135, 0.04);
}

.blog-summary-preview {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 0.95rem;
}

.blog-summary-preview p {
    margin-bottom: 1rem;
}

.blog-summary-preview p:last-child {
    margin-bottom: 0;
}

.blog-summary-preview strong {
    color: var(--primary-color);
}

/* Stiluri Month Divider */
.month-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2.5rem 0;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

.month-divider::before,
.month-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
}

.month-divider::before {
    margin-right: 1.5rem;
}

.month-divider::after {
    margin-left: 1.5rem;
}

.month-divider span {
    background: #ffffff;
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(8px);
}

/* Admin panel display controls */
.admin-only {
    display: none !important;
}

body.is-admin .admin-only:not(.grid-3):not(.sheets-action) {
    display: block !important;
}

body.is-admin .admin-only.grid-3,
body.is-admin .upload-section {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 800px !important;
    margin: 0 auto 2rem !important;
}

body.is-admin .admin-only.sheets-action {
    display: flex !important;
}

@media (max-width: 768px) {
    body.is-admin .upload-section,
    body.is-admin .admin-only.grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* --- SECURIZARE & PROTECTIE DREPTURI DE AUTOR --- */

/* Blocare selectare text pentru a preveni copy-paste grosolan */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Reactivare selectare pentru campurile de introducere date */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Watermark subtil diagonal de fundal pe carduri contra screenshot-urilor */
.card {
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "© Tudor Marchis & Electromobilitate";
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.15; /* Discret, plasat in coltul dreapta jos */
    pointer-events: none;
    z-index: 2;
}

.card > * {
    position: relative;
    z-index: 1;
}

/* --- GRAFICE ISTORICE ȘI COMPARATIVE --- */
.comp-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.comp-month-lbl {
    width: 35px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-color);
}
.comp-tracks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.track-2025, .track-2026 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 12px;
}
.track-fill-2025 {
    height: 100%;
    background: #cbd5e1; /* Gri pentru 2025 */
    border-radius: 3px;
    min-width: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.track-fill-2026 {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 3px;
    min-width: 2px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.track-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}
.track-val.active-year {
    color: var(--primary-color);
    font-weight: 800;
}

/* Stiluri pentru graficele cu bare generale */
.bar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.country-label {
    width: 150px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
}
.bar-track {
    flex: 1;
    background: #f1f5f9;
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}
.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}
.bar-fill.highlight {
    background: linear-gradient(90deg, #f43f5e, #fb7185) !important;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2) !important;
}
.bar-value {
    width: 80px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-color);
}

.v-chart-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    margin-top: 1.5rem;
    padding-bottom: 5px;
}

#monthly-comp-list, #annual-evolution-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 280px;
    padding-top: 45px;
    position: relative;
    gap: 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    width: 100%;
}

.v-col-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
    border-right: 1px dashed rgba(226, 232, 240, 0.8);
}

.v-col-group:last-child {
    border-right: none;
}

.v-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: calc(100% - 25px);
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0 4px;
}

/* Culori conform mockup-ului */
.v-bar-2025 {
    width: 18px;
    background: #4299e1; /* Albastru deschis */
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.v-bar-2026 {
    width: 18px;
    background: #004b87; /* Albastru inchis */
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.v-bar-annual {
    width: 30px;
    background: #4299e1; /* Albastru deschis */
    border-radius: 4px 4px 0 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.v-bar-annual.highlight {
    background: #004b87 !important; /* Albastru inchis */
}

.v-col-lbl {
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 10px;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.v-bar-val-static {
    font-size: 0.72rem;
    font-weight: 800;
    color: #2b6cb0; /* Albastru mediu pentru contrast mai bun */
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 6px;
    white-space: nowrap;
    z-index: 5;
}

.v-bar-val-static.active-year {
    color: #004b87;
}

/* Badge-uri de crestere */
.growth-badges-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.growth-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.growth-badge.positive {
    background-color: #ecfdf5;
    color: #10b981;
}

.growth-badge.negative {
    background-color: #fef2f2;
    color: #ef4444;
}

/* Header summary card pentru evolutie */
.annual-summary-box {
    display: flex;
    flex-direction: column;
    border-left: 4px solid #004b87;
    background: #f8fafc;
    padding: 0.75rem 1.25rem;
    border-radius: 0 12px 12px 0;
    align-items: flex-start;
}

.annual-summary-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.annual-summary-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #004b87;
}

/* Custom layout scroll pe mobil */
@media (max-width: 600px) {
    /* Header & Logo styling on mobile */
    header {
        margin-bottom: 1.5rem !important;
        gap: 0.5rem !important;
    }
    .logo-area {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .logo-area h1 {
        font-size: 1.8rem !important;
        font-weight: 800;
        text-align: center;
        line-height: 1.2;
    }
    .logo-area h1 span {
        display: block;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .subtitle {
        font-size: 0.8rem !important;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Nav & Controls on mobile */
    .nav-header {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        width: 100% !important;
        padding-bottom: 1rem !important;
    }
    .nav-links {
        width: 100% !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    .nav-btn {
        flex: 1 1 45% !important;
        text-align: center;
        padding: 0.5rem 0.5rem !important;
        font-size: 0.78rem !important;
        border-radius: 6px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav-header div:last-child {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Monthly & Annual Charts scroll & heights on mobile */
    .v-chart-container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px !important;
        display: block !important;
        width: 100% !important;
    }
    #monthly-comp-list {
        display: flex !important;
        align-items: flex-end !important;
        min-width: 640px !important;
        height: 220px !important;
        padding-top: 15px;
    }
    #annual-evolution-list {
        display: flex !important;
        align-items: flex-end !important;
        min-width: 780px !important;
        height: 220px !important;
        padding-top: 15px;
    }
    .v-col-group {
        min-width: 42px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }
    .v-bars {
        height: 175px !important;
        display: flex !important;
        align-items: flex-end !important;
    }
    .v-bar-val-static {
        font-size: 0.58rem !important;
    }

    /* Responsive Tables on mobile */
    .table-container {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    table {
        width: 100% !important;
        table-layout: fixed !important;
    }
    th, td {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.75rem !important;
        word-break: break-word !important;
    }
    
    /* Specific column widths for Top Models & Radieri (Nr, Marca, Model, Volum) */
    table th:nth-child(1), table td:nth-child(1) {
        width: 30px !important;
        text-align: center;
    }
    table th:nth-child(2), table td:nth-child(2) {
        width: 35% !important;
    }
    table th:nth-child(3), table td:nth-child(3) {
        width: 40% !important;
    }
    table th:nth-child(4), table td:nth-child(4) {
        width: 50px !important;
        text-align: right;
    }

    /* European comparison dashboard list horizontal progress bars on mobile */
    .bar-item {
        flex-wrap: wrap !important;
        gap: 0.25rem 0.5rem !important;
        margin-bottom: 0.85rem !important;
    }
    .country-label {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.1rem !important;
    }
    .bar-track {
        flex: 1 1 auto !important;
        height: 18px !important;
    }
    .bar-value {
        width: 65px !important;
        font-size: 0.85rem !important;
        text-align: right !important;
    }
}


