.self-cost-tooltip {
    top: calc(100% + 0.25rem);
    left: 0;
    z-index: 1000;
    background-color: var(--rz-base-background-color, #ffffff);
    border: 1px solid var(--rz-border-color, #d8d8d8);
    border-radius: 6px;
    box-shadow: var(--rz-elevation-3, 0 6px 16px rgba(0, 0, 0, 0.15));
    padding: 0.75rem 1rem;
    min-width: 240px;
    max-width: 320px;
    color: var(--rz-text-color, #202124);
}

.self-cost-tooltip__title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.self-cost-tooltip__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.self-cost-tooltip__item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    align-items: center;
}

.self-cost-tooltip__name {
    font-weight: 500;
}

.self-cost-tooltip__quantity {
    font-size: 0.9rem;
    color: var(--rz-secondary-text-color, #5f6368);
}

.self-cost-tooltip__price {
    font-weight: 600;
    justify-self: end;
}

.self-cost-tooltip__missing {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--rz-secondary-text-color, #5f6368);
}
