﻿
@import url('../../css/vars.css');


/*:root {
    --bg-dark: #1A1A1A;
    --bg-card: #2D2D2D;
    --text-main: #E0E0E0;
    --text-highlight: #FFD700;
    --accent-yellow: #FFD700;
    --accent-dark-yellow: #B8860B;
}*/

body {
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 20px;*/
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  
 
}


.card {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    height: 280px;
    background-color: var(--dashboard-card-bacground-color);
    opacity: 0.7;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--theme-background-color-lite);
    padding-bottom: 10px;
}

.card-title {
    color: var(--text);
    margin: 0;
    font-size: 1.2em;
}

.value {
    font-size: 2em;
    font-weight: bold;
    color: var(--color-skyblue);
}

.progress-bar {
    height: 10px;
    background: #444;
    border-radius: 5px;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    border-radius: 5px;
    background: var(--color-skyblue);
    width: 75%; /* Пример заполнения */
}

.chart-container {
    height: 160px !important;
    width: 160px !important;
    margin-top: 15px;
}

.sources-list {
    list-style: none;
    padding: 0;
}

    .sources-list li {
        margin: 8px 0;
        display: flex;
        justify-content: space-between;
    }

.badge {
    background: var(--color-skyblue);
    color: #000000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

