@import url('style.css');

.stat-card-mini {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card-mini h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.stat-card-mini h6 {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

.stat-icon-mini {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon-mini.blue { background: #dbeafe; color: #2563eb; }
.stat-icon-mini.green { background: #dcfce7; color: #16a34a; }
.stat-icon-mini.yellow { background: #fef3c7; color: #d97706; }
.stat-icon-mini.red { background: #fee2e2; color: #dc2626; }

.chart-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding: 12px 0;
}

.line-point {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    margin: 0 2px;
    position: relative;
    text-align: center;
    font-size: 10px;
    color: #94a3b8;
    padding-top: 4px;
}

.vendor-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.vendor-item:last-child {
    border-bottom: none;
}

.vendor-name {
    font-size: 13px;
    font-weight: 500;
}

.vendor-count {
    font-size: 12px;
    color: #94a3b8;
    float: right;
}

.vendor-bar {
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    margin-top: 4px;
    transition: width 0.6s ease;
}

.sla-item {
    margin-bottom: 12px;
}

.sla-item:last-child {
    margin-bottom: 0;
}

.sla-item .d-flex {
    font-size: 13px;
    margin-bottom: 2px;
}

.sla-item .progress {
    height: 6px;
    border-radius: 4px;
}

.dept-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.dept-item:last-child {
    border-bottom: none;
}

.dept-name {
    font-size: 13px;
    font-weight: 500;
}

.dept-count {
    font-size: 12px;
    color: #94a3b8;
    float: right;
}

.dept-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 4px;
    overflow: hidden;
}

.dept-bar > div {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.6s ease;
}