/*
 * Bileşen: İstatistik Widget'ı
 */

.bfwt-stats-widget {
    background-color: var(--color-background-soft);
    border-radius: var(--border-radius-base);
    padding: clamp(15px, 3vw, 25px);
    border: 1px solid var(--color-border-light);
}

.bfwt-stats-widget__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-md);
    color: var(--color-text-base);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border-light);
}

.bfwt-stats-widget__header .material-symbols-rounded {
    color: var(--color-primary);
}

.bfwt-stats-widget__grid {
    display: grid;
    gap: 10px;
}

.bfwt-stats-widget__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: var(--color-background);
    border-radius: var(--border-radius-small);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.bfwt-stats-widget__item strong {
    font-weight: 700;
    color: var(--color-text-base);
}

.bfwt-stats-widget__item--total {
    margin-top: 5px;
    background-color: transparent;
    border-top: 1px dashed var(--color-border-medium);
    padding-top: 15px;
    border-radius: 0;
}

.bfwt-stats-widget__item--total strong {
    font-size: var(--font-size-md);
}