<style>
/* Container for logo + company name in modals */
.container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically - THIS WAS MISSING */
    gap: 15px;              /* Space between logo and text */
    width: 100%;            /* Full width for proper centering */
    padding: 20px 0;        /* Vertical padding */
    margin: 0 auto;         /* Center the container itself */
}

.container img {
    width: auto;
    height: 60px;          /* Reasonable logo height */
    max-height: 60px;      /* Keep it from getting too big */
    display: block;
}

.container h2 {
    font-size: 32px;
    margin: 0;
    padding: 0;
    color: <?php echo $color_primary; ?>; /* Now it will parse PHP variable */
    white-space: nowrap;   /* Prevent text wrapping */
}
</style>
