﻿
.invoice-recipient-logo {
    /* Container for the two lines */
    display: flex;
    flex-direction: column; /* Stack "OLIVIA" and "KING" vertically */
    align-items: center; /* Align text to the left within the container */
    line-height: 1.0; /* Reduce default line height */
    margin-bottom: -0.1em; /* Adjust vertical spacing if needed */
}

.invoice-recipient-logo .first-name,
.invoice-recipient-logo .last-name {
    /* Common styles for both lines */
    font-family: 'Roboto', sans-serif;
    font-weight: 900;                 /* Or 700 / Bold, depending on exact boldness needed */
    text-transform: uppercase;        /* Ensures all caps */
    letter-spacing: 0.5em;            /* Adjust as needed for spacing between letters */
    --color: #000;                      /* Black text */
    white-space: nowrap;              /* Prevent wrapping if container is too narrow */
}

/* Adjust font sizes for each line */
.invoice-recipient-logo .first-name {
    font-size: 2.5em; /* Adjusted based on typical display for testing */
}

.invoice-recipient-logo .last-name {
    font-size: 3em; /* Adjusted based on typical display for testing */
}



