﻿.customer-bar {
    background-color: #223258;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* This centers everything vertically */
    border-radius: 3px;
    margin-bottom: 15px;
    height: 50px;
}

    .customer-bar h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        display: flex;
        color: white;
        align-items: center; /* Ensures h5 aligns with other flex items */
    }

.selection-bar {
    background-color: #f0f0f0;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* for baseline alignment */
    border-radius: 3px;
    margin-bottom: 15px;
}
