.fc-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 4px;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.fc-button:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.fc-button:disabled,
.fc-button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: .55;
    pointer-events: none;
}

.fc-button.primary-light {
    border-color: var(--fc-white);
    background: var(--brand-primary);
    color: var(--fc-white);
}

.fc-button.primary-light:hover {
    background: var(--brand-primary-dark);
}

.fc-button.primary-dark {
    border-color: var(--fc-black);
    background: var(--brand-primary);
    color: var(--fc-black);
}

.fc-button.primary-dark:hover {
    background: var(--brand-primary-dark);
}

.fc-button.secondary-light {
    border-color: var(--brand-primary);
    background: var(--fc-white);
    color: var(--brand-primary);
}

.fc-button.secondary-light:hover {
    background: var(--fc-cream);
}

.fc-button.secondary-dark {
    border-color: var(--brand-primary);
    background: var(--fc-black);
    color: var(--brand-primary);
}

.fc-button.secondary-dark:hover {
    background: var(--fc-charcoal);
}

.fc-button.search {
    min-height: 44px;
    border-color: var(--fc-white);
    background: var(--fc-black);
    color: var(--fc-white);
}

.fc-button.search:hover {
    background: var(--fc-charcoal);
}

.fc-kpi-card {
    min-height: 76px;
    border: 1px solid var(--fc-gray-pale);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: var(--fc-white);
}

.fc-kpi-card--interactive {
    color: inherit;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.fc-kpi-card--interactive:hover,
.fc-kpi-card--interactive:focus-visible {
    border-color: var(--brand-primary);
    color: inherit;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-primary) 18%, transparent);
}

.fc-kpi-card--interactive:focus-visible {
    outline: 0;
}

.fc-kpi-card--active {
    border-color: var(--brand-primary);
    background: var(--fc-cream);
    box-shadow: inset 3px 0 0 var(--brand-primary);
}

.fc-kpi-card__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fc-black);
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    font-size: 18px;
}

.fc-kpi-card__value {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}

.fc-kpi-card__label {
    margin-top: 5px;
    color: var(--fc-muted);
    font-size: 11px;
    line-height: 1.2;
}
