/* Brand Menu Buttons - Text Style */
.brand-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: #ffffff;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    min-width: 100px;
    /* Ensure uniform width if desired, or just padding */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-nav-btn:hover {
    background: #f0f0f0;
    color: #000;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Ensure the nav container allows horizontally scrolling/flexing if needed */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    /* Center the items */
    padding: 10px 0;
}