/* Custom tooltip styling */
.tooltip-inner {
    text-align: left;
    max-width: 350px;
    padding: 0.5rem 0.75rem;
    background-color: #333;
    color: #fff;
    border-radius: 0.25rem;
}

.tooltip .tooltip-arrow::before {
    border-top-color: #333;
}

/* Specific overrides for custom tooltips */
.custom-tooltip-class .tooltip-inner {
    /* Specific styling for custom tooltips */
    background-color: var(--primary-action);
}

.custom-tooltip-class .tooltip-arrow::before {
    border-top-color: var(--primary-action);
}

/* Joint account holder list: title uses &#10; line breaks */
.tooltip.tooltip-holders-multiline .tooltip-inner {
    white-space: pre-line;
} 